|
||
---|---|---|
.. | ||
docs | ||
lib | ||
package.json | ||
README.md |
isReadablePropertyIn
Test if an object's own or inherited property is readable.
Usage
var isReadablePropertyIn = require( '@stdlib/assert/is-readable-property-in' );
isReadablePropertyIn( value, property )
Returns a boolean
indicating if a value
has a readable property
.
var defineProperty = require( '@stdlib/utils/define-property' );
var obj = {
'foo': 'bar'
};
defineProperty( obj, 'beep', {
'configurable': false,
'enumerable': false,
'writable': false,
'value': 'boop'
});
defineProperty( obj, 'setter', {
'configurable': false,
'enumerable': false,
'set': function setter( v ) {
obj.foo = v;
}
});
var bool = isReadablePropertyIn( obj, 'foo' );
// returns true
bool = isReadablePropertyIn( obj, 'beep' );
// returns true
bool = isReadablePropertyIn( obj, 'setter' );
// returns false
Notes
-
Value arguments other than
null
orundefined
are coerced toobjects
.var bool = isReadablePropertyIn( 'beep', 'toString' ); // returns true
-
Property arguments are coerced to
strings
.var obj = { 'null': 'foo' }; var bool = isReadablePropertyIn( obj, null ); // returns true
Examples
var isReadablePropertyIn = require( '@stdlib/assert/is-readable-property-in' );
var bool = isReadablePropertyIn( [ 'a' ], 'length' );
// returns true
bool = isReadablePropertyIn( { 'a': 'b' }, 'a' );
// returns true
bool = isReadablePropertyIn( [ 'a' ], 0 );
// returns true
bool = isReadablePropertyIn( { 'null': false }, null );
// returns true
bool = isReadablePropertyIn( { '[object Object]': false }, {} );
// returns true
bool = isReadablePropertyIn( {}, 'toString' );
// returns true
bool = isReadablePropertyIn( {}, 'hasOwnProperty' );
// returns true
bool = isReadablePropertyIn( null, 'a' );
// returns false
bool = isReadablePropertyIn( void 0, 'a' );
// returns false