@stdlib/utils-nonenumerable-properties-in

Return an array of an object's own and inherited non-enumerable property names and symbols.

Usage no npm install needed!

<script type="module">
  import stdlibUtilsNonenumerablePropertiesIn from 'https://cdn.skypack.dev/@stdlib/utils-nonenumerable-properties-in';
</script>

README

nonEnumerablePropertiesIn

NPM version Build Status Coverage Status dependencies

Return an array of an object's own and inherited non-enumerable property names and symbols.

Installation

npm install @stdlib/utils-nonenumerable-properties-in

Usage

var nonEnumerablePropertiesIn = require( '@stdlib/utils-nonenumerable-properties-in' );

nonEnumerablePropertiesIn( obj )

Returns an array of an object's own and inherited non-enumerable property names and symbols.

var defineProperty = require( '@stdlib/utils-define-property' );

var obj = {};

defineProperty( obj, 'a', {
    'configurable': false,
    'enumerable': false,
    'writable': false,
    'value': 'a'
});

var props = nonEnumerablePropertiesIn( obj );
// returns [ 'a', ... ]

Examples

var defineProperty = require( '@stdlib/utils-define-property' );
var hasSymbolSupport = require( '@stdlib/assert-has-symbol-support' );
var Symbol = require( '@stdlib/symbol-ctor' );
var nonEnumerablePropertiesIn = require( '@stdlib/utils-nonenumerable-properties-in' );

var hasSymbols;
var props;
var obj;

hasSymbols = hasSymbolSupport();

function Foo() {
    this.a = 'a';
    defineProperty( this, 'b', {
        'configurable': false,
        'enumerable': false,
        'writable': true,
        'value': 'b'
    });
    if ( hasSymbols ) {
        this[ Symbol( 'a' ) ] = 'a';
        defineProperty( this, Symbol( 'b' ), {
            'configurable': false,
            'enumerable': false,
            'writable': true,
            'value': 'b'
        });
    }
    return this;
}

Foo.prototype.foo = 'bar';
defineProperty( Foo.prototype, 'beep', {
    'configurable': false,
    'enumerable': false,
    'writable': false,
    'value': 'boop'
});
if ( hasSymbols ) {
    Foo.prototype[ Symbol( 'foo' ) ] = 'bar';
    defineProperty( Foo.prototype, Symbol( 'beep' ), {
        'configurable': false,
        'enumerable': false,
        'writable': false,
        'value': 'boop'
    });
}

obj = new Foo();
props = nonEnumerablePropertiesIn( obj );

console.log( props );
// e.g., => [ 'b', 'beep', ... ]

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-2021. The Stdlib Authors.