as

as/array and as/object. Convert easily, back and forth.

Usage no npm install needed!

<script type="module">
  import as from 'https://cdn.skypack.dev/as';
</script>

README

Build statusCoverallsCode climateDavid DM

as

as/array and as/object. Convert easily, back and forth.

  • Brings all functional goodness of arrays to objects.
  • Brings the flexibility of objects to arrays.
  • Works well with a functional programming library, like 101.

Installation

$ npm install as

Usage

var asArray = require("as/array");
var asObject = require("as/object");

as/array

asArray(
  {a: 1, b: 2}
  );
// [ {key: "a", value: 1}
// , {key: "b", value: 2}
// ]

as/object

asObject(
  [ {key: "a", value: 1}
  , {key: "b", value: 2}
  ]);
// {a: 1, b: 2}

License

MIT © Tomek Wiszniewski.