Object namespace.
var ns = require( '@stdlib/object' );Object namespace.
var o = ns;
// returns {...}The namespace contains the following:
assignIn( target, source1[, source2[,...,sourceN]] ): copy enumerable own and inherited properties from one or more source objects to a target object.assign( target, source1[, source2[,...,sourceN]] ): copy enumerable own properties from one or more source objects to a target object.Object( value ): object constructor.everyInBy( object, predicate[, thisArg ] ): test whether all properties (own and inherited) of an object pass a test implemented by a predicate function.everyOwnBy( object, predicate[, thisArg ] ): test whether all own propertes of an object pass a test implemented by a predicate function.noneInBy( object, predicate[, thisArg ] ): test whether every property of an object fails a test implemented by a predicate function.someInBy( obj, n, predicate[, thisArg ] ): test whether an object contains at leastnproperties which pass a test implemented by a predicate function.
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/object' );
console.log( objectKeys( ns ) );