JSPM

@stdlib/assert-is-readable-property

0.0.6
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q24800F
  • License Apache-2.0

Test if an object's own property is readable.

Package Exports

  • @stdlib/assert-is-readable-property

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/assert-is-readable-property) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

isReadableProperty

NPM version Build Status Coverage Status dependencies

Test if an object's own property is readable.

Installation

npm install @stdlib/assert-is-readable-property

Usage

var isReadableProperty = require( '@stdlib/assert-is-readable-property' );

isReadableProperty( 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 = isReadableProperty( obj, 'foo' );
// returns true

bool = isReadableProperty( obj, 'beep' );
// returns true

bool = isReadableProperty( obj, 'setter' );
// returns false

Notes

  • Value arguments other than null or undefined are coerced to objects.

    var bool = isReadableProperty( 'beep', 'length' );
    // returns true
  • Property arguments are coerced to strings.

    var obj = {
        'null': 'foo'
    };
    
    var bool = isReadableProperty( obj, null );
    // returns true

Examples

var isReadableProperty = require( '@stdlib/assert-is-readable-property' );

var bool = isReadableProperty( [ 'a' ], 'length' );
// returns true

bool = isReadableProperty( { 'a': 'b' }, 'a' );
// returns true

bool = isReadableProperty( [ 'a' ], 0 );
// returns true

bool = isReadableProperty( { 'null': false }, null );
// returns true

bool = isReadableProperty( { '[object Object]': false }, {} );
// returns true

bool = isReadableProperty( {}, 'toString' );
// returns false

bool = isReadableProperty( {}, 'hasOwnProperty' );
// returns false

bool = isReadableProperty( null, 'a' );
// returns false

bool = isReadableProperty( void 0, 'a' );
// returns false

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