The Wayback Machine - https://web.archive.org/web/20221229155425/https://github.com/stdlib-js/utils-entries
Skip to content

stdlib-js/utils-entries

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Object Entries

NPM version Build Status Coverage Status

Return an array of an object's own enumerable property key-value pairs.

Installation

npm install @stdlib/utils-entries

Alternatively,

The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.

Usage

var objectEntries = require( '@stdlib/utils-entries' );

objectEntries( obj )

Returns an array of an object's own enumerable property [key, value] pairs.

var obj = {
    'a': 1,
    'b': 2
};

var entries = objectEntries( obj );
// e.g., returns [ ['a', 1], ['b', 2] ]

Notes

  • Entry order is not guaranteed, as object key enumeration is not specified according to the ECMAScript specification. In practice, however, most engines use insertion order to sort an object's keys, thus allowing for deterministic return values.

Examples

var objectEntries = require( '@stdlib/utils-entries' );

var obj = {
    'beep': 'boop',
    'a': {
        'b': 'c'
    },
    'foo': [ 'bar' ]
};

var entries = objectEntries( obj );
// e.g., returns [ ['beep', 'boop'], ['a', {'b':'c'}], ['foo', [ 'bar' ]] ]

See Also


Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2022. The Stdlib Authors.