Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

object-keys.js 364B

12345678910
  1. 'use strict';
  2. var internalObjectKeys = require('../internals/object-keys-internal');
  3. var enumBugKeys = require('../internals/enum-bug-keys');
  4. // `Object.keys` method
  5. // https://tc39.es/ecma262/#sec-object.keys
  6. // eslint-disable-next-line es/no-object-keys -- safe
  7. module.exports = Object.keys || function keys(O) {
  8. return internalObjectKeys(O, enumBugKeys);
  9. };