UNPKG

302 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/util authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3import { objectSpread } from "./spread.js";
4/**
5 * @name objectCopy
6 * @summary Creates a shallow clone of the input object
7 */
8
9export function objectCopy(source) {
10 return objectSpread({}, source);
11}
\No newline at end of file