qauMaWeb/node_modules/@hapi/hoek/lib/utils.js

10 lines
205 B
JavaScript
Raw Permalink Normal View History

2024-10-13 18:02:27 +08:00
'use strict';
const internals = {};
exports.keys = function (obj, options = {}) {
return options.symbols !== false ? Reflect.ownKeys(obj) : Object.getOwnPropertyNames(obj); // Defaults to true
};