Files
budget_analyser/node_modules/has-proto/index.js
TiclemFR 076ec32c3b 🔧
2023-12-29 17:47:40 +01:00

12 lines
197 B
JavaScript

'use strict';
var test = {
foo: {}
};
var $Object = Object;
module.exports = function hasProto() {
return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object);
};