Node-Red configuration
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.js 302B

123456789101112131415
  1. 'use strict';
  2. var test = {
  3. __proto__: null,
  4. foo: {}
  5. };
  6. var $Object = Object;
  7. /** @type {import('.')} */
  8. module.exports = function hasProto() {
  9. // @ts-expect-error: TS errors on an inherited property for some reason
  10. return { __proto__: test }.foo === test.foo
  11. && !(test instanceof $Object);
  12. };