This repository was archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
61 lines (58 loc) · 2.08 KB
/
index.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
/**
* extend-array
* Extends the Array class with a couple of useful new methods
* They are all "hidden" with enumerable: hidden using defineProperty
*/
/**
* Credits for this should go to Edgar Villegas Alvarado
* He showed a fast intersect solution on Stack Overflow:
* http://stackoverflow.com/questions/1885557/simplest-code-for-array-intersection-in-javascript
*
* This is an expansion on his code, changed a bit to make it more "safe" and fit more use cases.
* The additions make sure the arrays are sorted, but makes the code slower.
* In return the original arrays doesn't get changed (sorted).
*/
Array.prototype.intersect = function(arr) {
// The last check here, is a check for a bug spotted, when running a large node.js App
// Exact problem not located, but these checks ensures that there isn't an error thrown
if( (arguments.length === 1) && (this.toString() != '[object global]') ) {
var ai = 0, bi = 0, result = new Array(), a = this.slice(0).sort(), b = arr.slice(0).sort();
while(ai < a.length && bi < b.length) {
if(a[ai] < b[bi]) {
ai++;
} else if(a[ai] > b[bi]) {
bi++;
} else {
result.push(a[ai]);
ai++; bi++;
}
}
return result;
}
};
Object.defineProperty(Array.prototype, 'intersect', { enumerable: false });
/**
* Credits for this should go to LiraNuna
* He showed this function on Stack Overflow:
* http://stackoverflow.com/questions/1584370/how-to-merge-two-arrays-in-javascript
*/
Array.prototype.unique = function() {
if( this.toString() != '[object global]' ) {
var a = this;
for(var i=0; i<a.length; ++i) {
for(var j=i+1; j<a.length; ++j) {
if(a[i] === a[j]) {
a.splice(j--, 1);
}
}
}
return a;
}
};
Object.defineProperty(Array.prototype, 'unique', { enumerable: false });
Array.prototype.merge = function() {
if( (arguments.length >= 1) && (this.toString() != '[object global]') ) {
return this.concat.apply(this, arguments).unique();
} else return this;
};
Object.defineProperty(Array.prototype, 'merge', { enumerable: false });