
Security News
pnpm 11.5 Adds Support for Recognizing npm Staged Publishes
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.
@stdlib/utils-enumerable-properties
Advanced tools
Return an array of an object's own enumerable property names and symbols.
Return an array of an object's own enumerable property names and symbols.
npm install @stdlib/utils-enumerable-properties
var enumerableProperties = require( '@stdlib/utils-enumerable-properties' );
Returns an array of an object's own enumerable property names and symbols.
var obj = {
'a': 1,
'b': 2
};
var props = enumerableProperties( obj );
// e.g., returns [ 'a', 'b' ]
object property enumeration is not specified according to the ECMAScript specification. In practice, however, most engines use insertion order to sort an object's properties, thus allowing for deterministic extraction.var defineProperty = require( '@stdlib/utils-define-property' );
var hasSymbolSupport = require( '@stdlib/assert-has-symbol-support' );
var Symbol = require( '@stdlib/symbol-ctor' );
var enumerableProperties = require( '@stdlib/utils-enumerable-properties' );
var hasSymbols = hasSymbolSupport();
var props;
var obj;
function Foo() {
this.a = 'a';
defineProperty( this, 'b', {
'configurable': true,
'enumerable': false,
'writable': true,
'value': 'b'
});
if ( hasSymbols ) {
this[ Symbol( 'a' ) ] = 'a';
defineProperty( this, Symbol( 'b' ), {
'configurable': true,
'enumerable': false,
'writable': true,
'value': 'b'
});
}
return this;
}
Foo.prototype.c = 'c';
if ( hasSymbols ) {
Foo.prototype[ Symbol( 'c' ) ] = 'c';
}
obj = new Foo();
props = enumerableProperties( obj );
console.log( props );
// e.g., => [ 'a', ... ]
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.
See LICENSE.
Copyright © 2016-2021. The Stdlib Authors.
FAQs
Return an array of an object's own enumerable property names and symbols.
The npm package @stdlib/utils-enumerable-properties receives a total of 28,600 weekly downloads. As such, @stdlib/utils-enumerable-properties popularity was classified as popular.
We found that @stdlib/utils-enumerable-properties demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.