You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/** * Gets the keys for an object. * * @return {Array} keys * @api private */
module.exports = Object.keys || function keys (obj){ var arr = []; var has = Object.prototype.hasOwnProperty;
for (var i in obj) { if (has.call(obj, i)) { arr.push(i); } } return arr; };
|