amis-rpc-design/node_modules/@hapi/hoek/lib/utils.js
2023-10-07 19:42:30 +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
};