Skip to content

Latest commit

 

History

History
262 lines (163 loc) · 8.52 KB

README.md

File metadata and controls

262 lines (163 loc) · 8.52 KB
About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

isReadableProperty

NPM version Build Status Coverage Status

Test if an object's own property is readable.

Usage

import isReadableProperty from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-readable-property@deno/mod.js';

isReadableProperty( value, property )

Returns a boolean indicating if a value has a readable property.

import defineProperty from 'https://cdn.jsdelivr.net/gh/stdlib-js/utils-define-property@deno/mod.js';

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

import isReadableProperty from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-readable-property@deno/mod.js';

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

See Also


Notice

This package is part of stdlib, a standard library 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-2024. The Stdlib Authors.