mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 06:47:57 +00:00
9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
import { objectSpread } from './spread.js';
|
|
/**
|
|
* @name objectCopy
|
|
* @summary Creates a shallow clone of the input object
|
|
*/
|
|
export function objectCopy(source) {
|
|
return objectSpread({}, source);
|
|
}
|