Files
documentation/node_modules/@hapi/hoek/lib/utils.js
2024-03-22 03:47:51 +05:30

10 lines
205 B
JavaScript
Executable File

'use strict';
const internals = {};
exports.keys = function (obj, options = {}) {
return options.symbols !== false ? Reflect.ownKeys(obj) : Object.getOwnPropertyNames(obj); // Defaults to true
};