-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patharray.js
402 lines (359 loc) · 7.8 KB
/
array.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
'use strict';
const object = require('./object');
const utils = require('../utils');
/**
* Returns true if `value` is an array.
*
* ```js
* <%= isArray('a, b, c') %>
* //=> 'false'
*
* <%= isArray(['a, b, c']) %>
* //=> 'true'
* ```
* @param {*} `value` The value to test.
* @return {Boolean}
* @api public
*/
exports.isArray = val => Array.isArray(val);
/**
* Cast `val` to an array.
*
* ```js
* <%= arrayify('a') %>
* //=> '["a"]'
*
* <%= arrayify({a: 'b'}) %>
* //=> '[{a: "b"}]'
*
* <%= arrayify(['a']) %>
* //=> '["a"]'
* ```
* @param {*} `val` The value to arrayify.
* @return {Array} An array.
* @return {Array}
* @api public
*/
exports.arrayify = val => [].concat(val != null ? val : []);
/**
* Returns the first item, or first `n` items of an array.
*
* ```js
* <%= first(['a', 'b', 'c', 'd', 'e'], 2) %>
* //=> '["a", "b"]'
* ```
* @name .first
* @param {Array} `array`
* @param {Number} `n` Number of items to return, starting at `0`.
* @return {Array}
* @api public
*/
exports.first = (arr, n) => {
if (utils.isEmpty(arr)) return '';
if (utils.isNumber(n)) {
return arr.slice(0, n);
}
return arr[0];
};
/**
* Returns the last item, or last `n` items of an array.
*
* ```js
* <%= last(['a', 'b', 'c', 'd', 'e'], 2) %>
* //=> '["d", "e"]'
* ```
* @param {Array} `array`
* @param {Number} `n` Number of items to return, starting with the last item.
* @return {Array}
* @api public
*/
exports.last = (arr, n) => {
if (utils.isEmpty(arr)) return '';
if (!utils.isNumber(n)) {
return arr[arr.length - 1];
}
return arr.slice(-n);
};
/**
* Returns all of the items in an array up to the specified number
* Opposite of `<%= after() %`.
*
* ```js
* <%= before(['a', 'b', 'c'], 2) %>
* //=> '["a", "b"]'
* ```
* @param {Array} `array`
* @param {Number} `n`
* @return {Array} Array excluding items after the given number.
* @crosslink after
* @api public
*/
exports.before = (arr, n) => {
return !utils.isEmpty(arr) ? arr.slice(0, -n) : '';
};
/**
* Returns all of the items in an arry after the specified index.
* Opposite of `<%= before() %`.
*
* ```js
* <%= after(['a', 'b', 'c'], 1) %>
* //=> '["c"]'
* ```
* @param {Array} `array` Collection
* @param {Number} `n` Starting index (number of items to exclude)
* @return {Array} Array exluding `n` items.
* @crosslink before
* @api public
*/
exports.after = (arr, n) => {
return !utils.isEmpty(arr) ? arr.slice(n) : '';
};
/**
* Calling `fn` on each element of the given `array` with
* the given `context`.
*
* ```js
* function double(str) {
* return str + str;
* }
* ```
*
* Assuming that `double` has been registered as a helper:
*
* ```js
* <%= each(['a', 'b', 'c'], double, ctx) %>
* //=> '["aa", "bb", "cc"]'
* ```
* @param {Array} `array`
* @param {String} `fn` The function to call on each element in the given array.
* @return {String}
* @api public
*/
exports.each = (arr, fn, context) => {
if (utils.isEmpty(arr)) {
return '';
}
let len = arr.length;
let idx = -1;
let res = '';
let val;
while (++idx < len) {
if ((val = fn.call(context, arr[idx], idx, arr)) === false) {
break;
}
res += val;
}
return res;
};
/**
* Returns a new array, created by calling `function`
* on each element of the given `array`.
*
* ```js
* function double(str) {
* return str + str;
* }
* ```
*
* Assuming that `double` has been registered as a helper:
*
* ```js
* <%= map(['a', 'b', 'c'], double) %>
* //=> '["aa", "bb", "cc"]'
* ```
* @param {Array} `array`
* @param {String} `fn` The function to call on each element in the given array.
* @return {String}
* @api public
*/
exports.map = (arr, fn, context) => {
if (utils.isEmpty(arr)) return '';
let len = arr.length;
let res = new Array(len);
let idx = -1;
while (++idx < len) {
res[idx] = fn.call(context, arr[idx], idx, arr);
}
return res;
};
/**
* Join all elements of array into a string, optionally using a
* given separator.
*
* ```js
* <%= join(['a', 'b', 'c']) %>
* //=> 'a, b, c'
*
* <%= join(['a', 'b', 'c'], '-') %>
* //=> 'a-b-c'
* ```
* @param {Array} `array`
* @param {String} `sep` The separator to use.
* @return {String}
* @api public
*/
exports.join = (arr, sep) => {
if (utils.isEmpty(arr)) return '';
return arr.join(typeof sep !== 'string' ? ', ' : sep);
};
/**
* Sort the given `array`. If an array of objects is passed,
* you may optionally pass a `key` to sort on as the second
* argument. You may alternatively pass a sorting function as
* the second argument.
*
* ```js
* <%= sort(["b", "a", "c"]) %>
* //=> 'a,b,c'
*
* <%= sort([{a: "zzz"}, {a: "aaa"}], "a") %>
* //=> '[{"a":"aaa"},{"a":"zzz"}]'
* ```
* @param {Array} `array` the array to sort.
* @param {String|Function} `key` The object key to sort by, or sorting function.
* @api public
*/
exports.sort = (arr, key) => {
if (utils.isEmpty(arr)) return '';
if (typeof key === 'function') {
return arr.sort(key);
}
if (typeof key !== 'string') {
return arr.sort();
}
return arr.sort((a, b) => {
if (object.isObject(a) && typeof a[key] === 'string') {
return a[key].localeCompare(b[key]);
}
if (typeof a === 'string') {
return a.localeCompare(b);
}
return a > b;
});
};
/**
* Returns the length of the given array.
*
* ```js
* <%= length(['a', 'b', 'c']) %>
* //=> 3
* ```
* @param {Array} `array`
* @return {Number} The length of the array.
* @api public
*/
exports.length = arr => {
if (utils.isEmpty(arr)) return '';
return Array.isArray(arr) ? arr.length : 0;
};
/**
* Returns an array with all falsey values removed.
*
* ```js
* <%= compact([null, a, undefined, 0, false, b, c, '']) %>
* //=> '["a", "b", "c"]'
* ```
* @param {Array} `arr`
* @return {Array}
* @api public
*/
exports.compact = arr => {
return !utils.isEmpty(arr) ? arr.filter(Boolean) : '';
};
/**
* Return the difference between the first array and
* additional arrays.
*
* ```js
* <%= difference(["a", "c"], ["a", "b"]) %>
* //=> '["c"]'
* ```
* @param {Array} `array` The array to compare againts.
* @param {Array} `arrays` One or more additional arrays.
* @return {Array}
* @api public
*/
exports.difference = (...args) => {
if (utils.isEmpty(args)) return '';
let [ a, b, c ] = args;
let len = a.length;
let arr = [];
let rest;
if (b == null) {
return a;
}
if (c == null) {
rest = b;
} else {
rest = utils.flatten(args.slice(1));
}
while (len--) {
if (rest.indexOf(a[len]) === -1) {
arr.unshift(a[len]);
}
}
return arr;
};
/**
* Return an array, free of duplicate values.
*
* ```js
* <%= unique(['a', 'b', 'c', 'c']) %
* => '["a", "b", "c"]'
* ```
* @param {Array} `array` The array to uniquify
* @return {Array} Duplicate-free array
* @api public
*/
exports.unique = arr => {
if (utils.isEmpty(arr)) return '';
let len = arr.length;
let i = -1;
while (i++ < len) {
let j = i + 1;
for (; j < arr.length; ++j) {
if (arr[i] === arr[j]) {
arr.splice(j--, 1);
}
}
}
return arr;
};
/**
* Returns an array of unique values using strict equality for comparisons.
*
* ```js
* <%= union(["a"], ["b"], ["c"]) %>
* //=> '["a", "b", "c"]'
* ```
* @param {Array} `arr`
* @return {Array}
* @api public
*/
exports.union = (...args) => {
return !utils.isEmpty(args) ? utils.union([], [].concat.apply([], args)) : '';
};
/**
* Shuffle the items in an array.
*
* ```js
* <%= shuffle(["a", "b", "c"]) %>
* //=> ["c", "a", "b"]
* ```
* @param {Array} `arr`
* @return {Array}
* @api public
*/
exports.shuffle = arr => {
let len = arr.length;
let res = new Array(len);
let i = -1;
while (++i < len) {
let rand = utils.random(0, i);
if (i !== rand) {
res[i] = res[rand];
}
res[rand] = arr[i];
}
return res;
};