shell-ahk
Version:
`Lodash`/`jQuery` for `AHK`.
20 lines (15 loc) • 464 B
text/coffeescript
# @ts-check
import $getType from './getType'
import $isArray from './isArray'
import $isObject from './isObject'
import $slice from './slice'
###* @type import('../type/module').Clone ###
export default (ipt) ->
if $isArray ipt then return $slice ipt
if $isObject ipt
###* @type Object ###
$mapNew = {}
for $key, $value of ipt
$mapNew[$key] = $value
return $mapNew
throw "$.clone: invalid type '#{$getType ipt}'"