system-prompts-and-models-o.../unified-ai-platform/node_modules/@hapi/hoek/lib/utils.js
dopeuni444 ae726301f8 KI
KJ
2025-08-06 11:08:49 +04:00

10 lines
205 B
JavaScript

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