Files
MOHPortalTest-AllAgents-All…/qwen/nodejs/node_modules/@hapi/hoek/lib/utils.js
2025-10-24 17:06:14 -05: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
};