Utility to get key-value pairs from an object.
$ component install ndhoule/entries
$ npm install @ndhoule/entries
Return a nested array containing an object's iterable, own key-value pairs.
entries({ a: 1, b: 2 });
// => [['a', 1], ['b', 2]]
Released under the MIT license.