Creates a shallow copy of the given object/value.
import * as _ from 'radashi' const ra = { name: 'Ra', power: 100,} const gods = [ra] _.clone(ra) // => copy of ra_.clone(gods) // => copy of gods