zhang-wei-jian's picture
proxt
cdb0d23
raw
history blame contribute delete
No virus
202 Bytes
exports = module.exports = typeof Object.keys === 'function'
? Object.keys : shim;
exports.shim = shim;
function shim (obj) {
var keys = [];
for (var key in obj) keys.push(key);
return keys;
}