Files
zhibo/node_modules/@hapi/hoek/lib/utils.js
T
xiaoyu 5be1f7344d init
2023-05-22 12:14:18 +08:00

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
};