react-native-get-pixel_edit/node_modules/@hapi/hoek/lib/utils.js
2025-07-09 11:41:52 +09: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
};