@stdlib/utils-move-property
v0.2.2
Published
Move a property from one object to another object.
Downloads
6
Readme
Move Property
Move a property from one object to another object.
Installation
npm install @stdlib/utils-move-property
Usage
var moveProperty = require( '@stdlib/utils-move-property' );
moveProperty( source, prop, target )
Moves a property from one object
to another object
.
var obj1 = {
'a': 'b'
};
var obj2 = {};
var bool = moveProperty( obj1, 'a', obj2 );
// returns true
If the operation is successful, the function returns true
; otherwise, false
.
var obj1 = {
'a': 'b'
};
var obj2 = {};
var bool = moveProperty( obj1, 'c', obj2 );
// returns false
Notes
A transfer is shallow.
var arr = [ 1, 2, 3 ]; var obj1 = { 'a': arr }; var obj2 = {}; var bool = moveProperty( obj1, 'a', obj2 ); console.log( obj2.a === arr ); // => true
The property is deleted from the source
object
.The property's descriptor is preserved during transfer.
If a source property is not
configurable
, the function throws anError
, as the property cannot be deleted from the sourceobject
.
Examples
var moveProperty = require( '@stdlib/utils-move-property' );
var obj1 = {
'beep': 'boop'
};
var obj2 = {
'foo': 'bar'
};
var bool = moveProperty( obj1, 'beep', obj2 );
if ( bool === false ) {
console.log( 'failed to move property' );
}
console.dir( obj1 );
/* =>
{}
*/
console.dir( obj2 );
/* =>
{
'foo': 'bar',
'beep': 'boop'
}
*/
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.