1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-03-15 18:15:46 +00:00

10 lines
202 B
JavaScript
Raw Normal View History

2019-01-06 13:14:45 -06:00
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;
}