JSPM

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

Define a non-enumerable property.

Package Exports

  • @stdlib/utils-define-nonenumerable-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/utils-define-nonenumerable-property) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Non-Enumerable Property

NPM version Build Status Coverage Status dependencies

Define a non-enumerable property.

Installation

npm install @stdlib/utils-define-nonenumerable-property

Usage

var setNonEnumerableProperty = require( '@stdlib/utils-define-nonenumerable-property' );

setNonEnumerableProperty( obj, prop, value )

Defines a non-enumerable property.

var obj = {};

setNonEnumerableProperty( obj, 'foo', 'bar' );

var v = obj.foo;
// returns 'bar'

Notes

  • Non-enumerable properties are writable and configurable.

Examples

var objectKeys = require( '@stdlib/utils-keys' );
var setNonEnumerableProperty = require( '@stdlib/utils-define-nonenumerable-property' );

function Foo( name ) {
    if ( !(this instanceof Foo) ) {
        return new Foo( name );
    }
    setNonEnumerableProperty( this, 'name', name );
    return this;
}

var foo = new Foo( 'beep' );

var v = foo.name;
// returns 'beep'

var keys = objectKeys( foo );
// returns []

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.


License

See LICENSE.

Copyright © 2016-2021. The Stdlib Authors.