UNPKG
vanilla-js
Version:
latest (0.0.1)
0.0.1
jQuery-like Aliases (NOT Wrappers) to HTML5 Selector API / Raw Document
mikesmullin/VanillaJS
vanilla-js
/
coffee
/
enumerators.coffee
16 lines
(12 loc)
•
188 B
text/coffeescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Enumerators
# like Underscore.js
_ = {} _.
extend
= -> a = arguments i = a.length
while
i-- >
1
b = a[i]
for
k of b a[
0
][k] = b[k]
return
a[
0
]
#_.deepExtend = ->