module.exports = Object.keys || function (obj) { var keys = []; for (var key in obj) keys.push(key); return keys; };