Assignment5_new/node_modules/has-proto
2025-01-07 10:44:59 +05:30
..
.github Initial Commit 2025-01-07 10:44:59 +05:30
test Initial Commit 2025-01-07 10:44:59 +05:30
.eslintrc Initial Commit 2025-01-07 10:44:59 +05:30
accessor.d.ts Initial Commit 2025-01-07 10:44:59 +05:30
accessor.js Initial Commit 2025-01-07 10:44:59 +05:30
CHANGELOG.md Initial Commit 2025-01-07 10:44:59 +05:30
index.d.ts Initial Commit 2025-01-07 10:44:59 +05:30
index.js Initial Commit 2025-01-07 10:44:59 +05:30
LICENSE Initial Commit 2025-01-07 10:44:59 +05:30
mutator.d.ts Initial Commit 2025-01-07 10:44:59 +05:30
mutator.js Initial Commit 2025-01-07 10:44:59 +05:30
package.json Initial Commit 2025-01-07 10:44:59 +05:30
README.md Initial Commit 2025-01-07 10:44:59 +05:30
tsconfig.json Initial Commit 2025-01-07 10:44:59 +05:30

has-proto Version Badge

github actions coverage License Downloads

npm badge

Does this environment have the ability to set the Prototype of an object on creation with __proto__?

Example

var hasProto = require('has-proto');
var assert = require('assert');

assert.equal(typeof hasProto(), 'boolean');

var hasProtoAccessor = require('has-proto/accessor')();
if (hasProtoAccessor) {
	assert.equal([].__proto__, Array.prototype);
} else {
	assert(!('__proto__' in Object.prototype));
}

var hasProtoMutator = require('has-proto/mutator');
var obj = {};
assert('toString' in obj);

obj.__proto__ = null;
if (hasProtoMutator) {
	assert(!('toString' in obj));
} else {
	assert('toString' in obj);
	assert.equal(obj.__proto__, null);
}

Tests

Simply clone the repo, npm install, and run npm test