@stdlib/assert-is-property-key
v0.2.2
Published
Test whether a value is a property key.
Downloads
40
Readme
isPropertyKey
Test whether a value is a property key.
Installation
npm install @stdlib/assert-is-property-key
Usage
var isPropertyKey = require( '@stdlib/assert-is-property-key' );
isPropertyKey( value )
Tests whether a value is a property key.
var bool = isPropertyKey( 'beep' );
// returns true
bool = isPropertyKey( 3.14 );
// returns false
Notes
- A valid property key is either a string, symbol, or a nonnegative integer. For example,
'beep'
,Symbol( 'beep' )
, and3
are all valid property keys. - Only primitive values are considered to be valid property keys. This excludes object wrappers such as
new String( 'beep' )
.
Examples
var Symbol = require( '@stdlib/symbol-ctor' );
var hasSymbolSupport = require( '@stdlib/assert-has-symbol-support' );
var isPropertyKey = require( '@stdlib/assert-is-property-key' );
var hasSymbols = hasSymbolSupport();
var bool = isPropertyKey( 'beep' );
// returns true
if ( hasSymbols ) {
bool = isPropertyKey( Symbol( 'beep' ) );
// returns true
} else {
console.log( 'Environment does not support symbols.' );
}
bool = isPropertyKey( 37 );
// returns true
bool = isPropertyKey( {} );
// returns false
bool = isPropertyKey( [] );
// returns false
See Also
@stdlib/assert-is-string
: test if a value is a string.@stdlib/assert-is-symbol
: test if a value is a symbol.@stdlib/assert-is-nonnegative-integer
: test if a value is a number having a nonnegative integer value.@stdlib/assert-has-own-property
: test if an object has a specified property.@stdlib/assert-has-property
: test if an object has a specified property, either own or inherited.
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.