htc 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
..
.github 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
test 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
.eslintrc 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
CHANGELOG.md 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
LICENSE 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
README.md 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
accessor.d.ts 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
accessor.js 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
index.d.ts 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
index.js 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
mutator.d.ts 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
mutator.js 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
package.json 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци
tsconfig.json 7ca38fdcbb 善行少年PC端首次提交(基础版) пре 10 месеци

README.md

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