@amphibian/object-keys

return keys of an object


License
ISC
Install
npm install @amphibian/object-keys@1.0.2

Documentation

object-keys

return keys of an object

npm install @amphibian/object-keys
var objectKeys = require('@amphibian/object-keys');
var object = {
    foo: 'bar',
    bar: 'foo'
};

console.log(objectKeys(object)); // > ['foo', 'bar']