UNPKG

@polkadot/util

Version:
9 lines (8 loc) 204 B
import { objectSpread } from './spread.js'; /** * @name objectCopy * @summary Creates a shallow clone of the input object */ export function objectCopy(source) { return objectSpread({}, source); }