Frontend/25_01_07/mai/node_modules/has-proto/index.js
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +01:00

16 lines
298 B
JavaScript

'use strict';
var test = {
__proto__: null,
foo: {}
};
// @ts-expect-error: TS errors on an inherited property for some reason
var result = { __proto__: test }.foo === test.foo
&& !(test instanceof Object);
/** @type {import('.')} */
module.exports = function hasProto() {
return result;
};