/home2/dakshskx/test.dakshadesign.com/node_modules/has-proto
NameSizeModeActions
.github/-0755rm
test/-0755rm
.eslintrc430644editdlrm
CHANGELOG.md22000644editdlrm
index.d.ts570644editdlrm
index.js3020644editdlrm
LICENSE10670644editdlrm
package.json20040644editdlrm
README.md16230644editdlrm
tsconfig.json36110644editdlrm
Edit: /home2/dakshskx/test.dakshadesign.com/node_modules/has-proto/index.js (302B)
'use strict'; var test = { __proto__: null, foo: {} }; var $Object = Object; /** @type {import('.')} */ module.exports = function hasProto() { // @ts-expect-error: TS errors on an inherited property for some reason return { __proto__: test }.foo === test.foo && !(test instanceof $Object); };