shell-ahk
Version:
`Lodash`/`jQuery` for `AHK`.
18 lines (12 loc) • 405 B
text/coffeescript
# -check
import push_getType from './getType'
import push_isArray from './isArray'
###* import('./push').Push ###
export default (list, values...) ->
unless push_isArray list
throw new Error "push: Expected first argument to be an array, got #{ push_getType list }"
unless values.Length()
return list.Length()
for push_it in values
list.Push push_it
return list.Length()