1.0.1 • Published 2 years ago

to-pairs v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
2 years ago

to-pairs Build Status

Convert an object into an array.

Inspired by _.pairs. 😄

Install

Install with npm

$ npm install to-pairs

Or unpkg

<script src="https://unpkg.com/to-pairs@1.0.0/umd/index.js" />

Check out the unit tests on CodePen.

Usage

const toPairs = require('to-pairs');

toPairs({one: 1, two: 2, three: 3});
//=> [["one", 1], ["two", 2], ["three", 3]]

Like us a lot? Help others know why you like us! Review this package on pkgreview.devReview us on pkgreview.dev

API

toPairs(object)

list

Type: object
Default: none

The object to convert.

License

MIT

1.0.1

2 years ago

1.0.0

4 years ago