@stdlib/assert-is-enumerable-property-in
v0.2.2
Published
Test if an object's own or inherited property is enumerable.
Downloads
8
Readme
isEnumerablePropertyIn
Test if an object's own or inherited property is enumerable.
Installation
npm install @stdlib/assert-is-enumerable-property-in
Usage
var isEnumerablePropertyIn = require( '@stdlib/assert-is-enumerable-property-in' );
isEnumerablePropertyIn( value, property )
Returns a boolean
indicating if a value
has an enumerable property
.
var defineProperty = require( '@stdlib/utils-define-property' );
var bool;
var obj;
function Foo() {
this.foo = 'bar';
return this;
}
defineProperty( Foo.prototype, 'beep', {
'configurable': true,
'enumerable': true,
'writable': true,
'value': true
});
defineProperty( Foo.prototype, 'boop', {
'configurable': true,
'enumerable': false,
'writable': true,
'value': true
});
obj = new Foo();
bool = isEnumerablePropertyIn( obj, 'foo' );
// returns true
bool = isEnumerablePropertyIn( obj, 'beep' );
// returns true
bool = isEnumerablePropertyIn( obj, 'boop' );
// returns false
Notes
Value arguments other than
null
orundefined
are coerced toobjects
.var bool = isEnumerablePropertyIn( 'beep', 'toString' ); // returns false
Property arguments are coerced to
strings
.var obj = { 'null': 'foo' }; var bool = isEnumerablePropertyIn( obj, null ); // returns true
Examples
var isEnumerablePropertyIn = require( '@stdlib/assert-is-enumerable-property-in' );
var bool = isEnumerablePropertyIn( { 'a': 'b' }, 'a' );
// returns true
bool = isEnumerablePropertyIn( [ 'a' ], 0 );
// returns true
bool = isEnumerablePropertyIn( { 'null': false }, null );
// returns true
bool = isEnumerablePropertyIn( { '[object Object]': false }, {} );
// returns true
bool = isEnumerablePropertyIn( {}, 'toString' );
// returns false
bool = isEnumerablePropertyIn( {}, 'hasOwnProperty' );
// returns false
bool = isEnumerablePropertyIn( [ 'a' ], 'length' );
// returns false
bool = isEnumerablePropertyIn( null, 'a' );
// returns false
bool = isEnumerablePropertyIn( void 0, 'a' );
// returns false
See Also
@stdlib/assert-is-configurable-property-in
: test if an object's own or inherited property is configurable.@stdlib/assert-is-enumerable-property
: test if an object's own property is enumerable.@stdlib/assert-is-nonenumerable-property-in
: test if an object's own or inherited property is non-enumerable.@stdlib/assert-is-readable-property-in
: test if an object's own or inherited property is readable.@stdlib/assert-is-writable-property-in
: test if an object's own or inherited property is writable.
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
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.