forked from nan-academy/tron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiter.js
50 lines (41 loc) · 1.27 KB
/
iter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { isInt, isFn, isObj, isStr } from './is.js'
import magic from './magic.js'
const polyIterate = (method, fn, collection, extra) => {
if (!collection) return collection
return isInt(collection.length)
? method.arr(fn, collection, extra)
: method.obj(fn, collection, extra)
}
const currify = fn => function() {
switch (arguments.length) {
case 1: return () => fn(arguments[0])
case 2: return fn(arguments[0], arguments[1])
case 3: return fn(arguments[0], arguments[1], arguments[2])
}
}
const makePolymorphic = method => {
const m = function () {
switch (arguments.length) {
case 1: return (a, b) => polyIterate(method, arguments[0], a, b)
case 2: return polyIterate(method, arguments[0], arguments[1])
case 3: return polyIterate(method, arguments[0], arguments[1],
arguments[2])
}
}
m.arr = currify(method.arr)
m.obj = currify(method.obj)
return m
}
makePolymorphic.magic = (ok, nok) => makePolymorphic({
obj: magic('obj', ok, nok),
arr: magic('arr', ok, nok),
})
const eql = makePolymorphic.magic({
args: [ 'src', 'collection' ],
pre: '//',
post: '\nif (src[key] !== collection[key]) return false',
nok: true,
})
makePolymorphic.eql = eql
makePolymorphic.currify = currify
export default makePolymorphic