-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcvince-underscore.js
484 lines (279 loc) · 8.06 KB
/
cvince-underscore.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
/*--------------------------------------------------
By: Vincent Chan
Underscore functions that I wrote and
tested by myself.
Usage and explanations are below.
---------------------------------------------------*/
var _vc = {};
/*
MAP
*/
_vc.map = function (input, callback){
var results = [];
for (var property in input){
results.push(callback(input[property], property, input));
}
return results;
};
/*
REDUCE
*/
_vc.reduce = function(input, callback, start){
var result = start;
for(var i = 0; i<input.length; i++){
result = callback(result, input[i]);
}
return result;
};
/*
EACH
*/
_vc.each = function (input, predicate){
if (typeof input === 'object'){
for(var key in input){
predicate(input, key);
}
}else if(Array.isArray(input)){
for(var i = 0; i<input.length; i++){
predicate(input, i);
}
}
};
/*
FILTER
*/
_vc.filter = function (list, predicate){
var outputArr = [];
_vc.each(list, function(list, index){
if(predicate(list[index])){
outputArr.push(list[index]);
}
});
return outputArr;
};
/*
CONTAINS
*/
_vc.contains = function(input, target){
if(input.indexOf(target)!=-1){
return true;
}else{
return false;
}
};
/*
UNIQ
Sample Data: [1, 3, 2, 1, 5, 1, 3, 2, 11]
*/
_vc.uniq = function(input){
_vc.each(input, function(input, i){
for(var j = i+1; j<input.length; j++){
//console.log(input[i]+' and '+input[j]);
if(input[i] == input[j]){
//console.log('erase' + input[j] + ' at index ' + j);
input.splice(j,1);
}
}
});
return input;
};
/*
FLATTEN
Sample Data: [[1, 3, 2], [1, 5, 1, 3], [2, 11]]
Sammple Data: [[1, 3, 2], [[1, 5, 1, 3], [2, 11]]]
*/
var flattenRecurse = function(input, output) {
if(Array.isArray(input)){
for(var i = 0; i<input.length; i++){
flattenRecurse(input[i], output);
}
}else{
output.push(input);
}
};
_vc.flatten = function(input, shallow) {
var flatArr = [];
if(!shallow){
flattenRecurse(input, flatArr);
}else{
_vc.each(input, function(input, index){
flatArr = flatArr.concat(input[index]);
});
}
return flatArr;
};
/*
UNION
direct dependencies: flatten, each, uniq
Sample Data: [1, 3, 2], [1, 5, 1, 3], [2, 11]
*/
_vc.union = function(){
var outputArr = _vc.uniq(_vc.flatten(arguments, true));
return outputArr;
};
/*
ALL
*/
_vc.all = function(input, predicate){
for(var i = 0; i< input.length; i++){
if (predicate(input[i])){
return true;
}else{
return false;
}
}
};
/*
ZIP
Sample Data: ['moe', 'larry', 'curly'], [30, 40, 50], [true, false, false]
*/
_vc.zip = function(input){
var args = arguments;
var outputArr = [];
_vc.each(args, function(args, i){
var innerArr = [];
_vc.map(args, function(num) {
innerArr.push(num[i]);
});
outputArr[i] = innerArr;
});
return outputArr;
};
/*
EXTEND
Sample Data: { 'name': 'fred' }, { 'employer': 'slate' }, { 'employer': 'slate2' }, { 'employer': 'slate3' }
Sample Data: { 'name': 'fred' }, { 'employer': 'slate', 'salary': '90k' }
*/
_vc.extend = function(obj){
var source = Array.prototype.slice.call(arguments, 1);
_vc.each(source, function(input, key){
if(input){
for(var prop in input[key]){
obj[prop] = input[key][prop];
}
}
});
return obj;
};
/*
PICK
Sample Data: _vc.pick({name: 'moe', age: 50, userid: 'moe1'}, 'name', 'age')
Sample Data: _vc.pick({name: 'moe', age: 50, userid: 'moe1'}, 'name', 'age', '12345', 'eEEeeE')
*/
_vc.pick = function(obj){
var outputObj = {};
var pickedKeys = Array.prototype.slice.call(arguments, 1);
_vc.each(obj, function(obj, key){
_vc.each(pickedKeys, function(pickedKeys, i){
if (obj[pickedKeys[i]])
outputObj[pickedKeys[i]] = obj[pickedKeys[i]];
});
});
return outputObj;
};
/*
INVERT
Sample Data: {Moe: "Moses", Larry: "Louis", Curly: "Jerome"}
*/
_vc.invert = function(obj){
var outputObj = {};
_vc.each(obj, function(obj, key){
outputObj[obj[key]] = key;
});
return outputObj;
};
/*
PLUCK
Sample Data: var stooges = [{name: 'moe', age: 40}, {name: 'larry', age: 50}, {name: 'curly', age: 60}];
*/
_vc.pluck = function(obj, key){
var outputArr = [];
_vc.map(obj, function(input){
outputArr.push(input[key]);
});
return outputArr;
};
/*--------------------------------------------------
DESCRIPTIONS AND DEMONSTRATIONS
---------------------------------------------------*/
/*
Underscore Map
*/
_vc.map(list, iterator, [context]);
//Map takes an input list, and applies a transformation to the input list based on a callback function, and produces a single new array.
_vc.map([2, 3, 4], function(num){ return num*3; });
//underscore does this:
//[2*3, 3*3, 4*3];
// => result is [6, 9, 12]
//If the input list is an object, the iterator's arguments will be vaue, key, list.
_vc.map({hello:2, my:3, name:4}, function(value, key){ return value*3; });
// => result is [6, 9, 12]
//Map also takes input strings!
_vc.map(['hello', 'my', 'name'], function(num){ return num + num; });
// => result ['hellohello', 'mymy', 'namename']
/*
Underscore Reduce
*/
_vc.reduce(list, iterator, memo, [context]);
//Reduce boils down a list into a single value based on an iterator function in the second argument.
_vc.reduce([2, 3, 4], function(memo, num){ return memo + num; });
//result is
// 2
// 2 + 3 = 5
// 5 + 4 = 9
// => returned number is 9
//With strings
_vc.reduce(['hello', 'my', 'name'], function(memo, num) { return memo + num; });
// result is
// 'hello'
// 'hello'+'my'
// 'hellomy'+'name'
// => returned value is 'hellomyname'
//With a memo
_vc.reduce([1, 2, 3], function(memo, num) { return memo*num; }, 10);
// result is
// 10
// 10 + 1
// 11 + 2
// 13 + 3
// => returned number is 16
/*
Underscore Union
*/
_vc.union([1, 2, 3], [4, 1, 3], [5, 7, 1]);
//union takes a number of arrays as arguments, concats the arrays, and performs _.uniq on it.
// => result is concat'd to a single array [1, 2, 3, 4, 1, 3, 5, 7, 1]
// => result is uniq'd to [1, 2, 3, 4, 5, 7], _.uniq takes away duplicates from the list, and just returns the same values.
//not sure if union is designed to handle nested arrays, or if flatten needs to be applied before inputting as args.
/*
Underscore Zip
*/
_vc.zip(['moe', 'larry', 'curly'], [30, 40, 50], [true, false, false]);
//zip takes n-number of seperate arrays, and maps the indices from each array and populates all the common indices together in seperate arrays
// => result is [["moe", 30, true], ["larry", 40, false], ["curly", 50, false]]
/*
Underscore Extend
*/
_vc.extend({name: 'moe'}, {age: 50}, {salary: '90k'});
//extend takes all the properties of source objects and adds it to the destination object.
//If there are objects of the same key in the source and the destination, the destination will be updated with the source values.
// => result is {name: "moe", age: 50, salary: "90k"}
/*
Underscore Pick
*/
_vc.pick({name: 'moe', age: 50, userid: 'moe1'}, 'name', 'age');
//pick filters the input array by the keys provided by the 2nd...Nth arguments and returns a new object with key-value pairs of the selected keys
//keys that are not within the object are ignored, and not passed into the returned object
// => result is {name: "moe", age: 50}
/*
Underscore Invert
*/
_vc.invert({Moe: "Moses", Larry: "Louis", Curly: "Jerome"});
//invert swaps the key-value pairs within an object. Objects values must be string serializable for this to work, or keys won't generate.
// => result is {Moses: "Moe", Louis: "Larry", Jerome: "Curly"}
/*
Underscore Pluck
*/
_vc.pluck([{name: 'moe', age: 40}, {name: 'larry', age: 50}, {name: 'curly', age: 60}], 'name');
//pluck extracts values from an array of objects based on a provided key, and outputs those values in a new array.
// => result is ["moe", "larry", "curly"]