1'use strict'; 2 3const internals = {}; 4 5 6exports.keys = function (obj, options = {}) { 7 8 return options.symbols !== false ? Reflect.ownKeys(obj) : Object.getOwnPropertyNames(obj); // Defaults to true 9}; 10 11