-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathes6-harmony.js
2470 lines (2160 loc) · 83.3 KB
/
es6-harmony.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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*!
* ES6 Harmony v0.2.4
* This module provides an equivalent implementation of ES6(Harmony)
* in pure ES5 and creates an ES6 environment for old browsers or
* JavaScript engines that natively does not support ES6.
*
* @license Copyright (c) 2017-2018 Rousan Ali, MIT License
*
* Codebase: https://github.com/rousan/es6-harmony
* Date: 28th Jan, 2018
*/
(function (global, factory) {
"use strict";
if (typeof module === "object" && typeof module.exports === "object") {
// For the environment like NodeJS, CommonJS etc where module or
// module.exports objects are available to export ES6 APIs.
module.exports = factory(global);
} else {
// For browser context, where global object is window
// and the ES6 APIs is exported as 'ES6' property of window object
global.ES6 = factory(global);
}
/* window is for browser environment and global is for NodeJS environment */
})(typeof window !== "undefined" ? window : global, function (global) {
"use strict";
var defineProperty = Object.defineProperty;
var defineProperties = Object.defineProperties;
var symbolHiddenCounter = 0;
var globalSymbolRegistry = [];
var slice = Array.prototype.slice;
var stringSlice = String.prototype.slice;
var stringIndexOf = String.prototype.indexOf;
var isArray = Array.isArray;
var objectToString = Object.prototype.toString;
var push = Array.prototype.push;
var match = String.prototype.match;
var globalIsFinite = isFinite;
var floor = Math.floor;
var max = Math.max;
var min = Math.min;
var create = Object.create;
var stringMaxLength = Infinity;
var symbolBucket = create(null);
var symbolNamePattern = /^@@_____(\d+)_____$/;
var emptyFunction = function () {};
var simpleFunction = function (arg) {
return arg;
};
var isCallable = function (fn) {
return typeof fn === 'function';
};
var isConstructor = function (fn) {
return isCallable(fn);
};
var Iterator = function () {};
var ArrayIterator = function ArrayIterator(array, flag) {
this._array = array;
this._flag = flag;
this._nextIndex = 0;
};
var StringIterator = function StringIterator(string, flag) {
this._string = string;
this._flag = flag;
this._nextIndex = 0;
};
var MapIterator = function MapIterator(map, flag) {
this._map = map;
this._flag = flag;
this._currentEntry = null;
this._done = false;
};
var SetIterator = function SetIterator(set, flag) {
this._set = set;
this._flag = flag;
this._currentEntry = null;
this._done = false;
};
// This method will be implemented later,
// now `false` just for development purpose
var isES6Running = function() {
return false;
};
var isObject = function (value) {
return value !== null && (typeof value === "object" || typeof value === "function");
};
var addToMessageQueue = function (fn, thisArg) {
if (!isCallable(fn))
throw new TypeError(fn + " is not a function");
var args = slice.call(arguments, 2);
setTimeout(function () {
fn.apply(thisArg, args);
});
};
var es6FunctionPrototypeHasInstanceSymbol = function (instance) {
if (typeof this !== "function")
return false;
return instance instanceof this;
};
var es6InstanceOfOperator = function instanceOf(object, constructor) {
if (!isObject(constructor))
throw new TypeError("Right-hand side of 'instanceof' is not an object");
var hasInstanceSymbolProp = constructor[Symbol.hasInstance];
if (typeof hasInstanceSymbolProp === "undefined") {
return object instanceof constructor;
} else if(typeof hasInstanceSymbolProp !== "function") {
throw new TypeError(typeof hasInstanceSymbolProp + " is not a function");
} else {
return hasInstanceSymbolProp.call(constructor, object);
}
};
// Generates name for a symbol instance and this name will be used as
// property key for property symbols internally.
var generateSymbolName = function (id) {
return "@@_____" + id + "_____";
};
// Generates id for next Symbol instance
var getNextSymbolId = function () {
return symbolHiddenCounter++;
};
var setupSymbolInternals = function (symbol, desc) {
defineProperties(symbol, {
_description: {
value: desc
},
_isSymbol: {
value: true
},
_id: {
value: getNextSymbolId()
}
});
return symbol;
};
var checkSymbolInternals = function (symbol) {
return symbol._isSymbol === true && typeof symbol._id === "number" && typeof symbol._description === "string";
};
var isSymbol = function (symbol) {
return symbol instanceof Symbol && checkSymbolInternals(symbol);
};
var symbolFor = function (key) {
key = String(key);
var registryLength = globalSymbolRegistry.length,
record,
i = 0;
for(; i<registryLength; ++i) {
record = globalSymbolRegistry[i];
if (record.key === key)
return record.symbol;
}
record = {
key: key,
symbol: Symbol(key)
};
globalSymbolRegistry.push(record);
return record.symbol;
};
var symbolKeyFor = function (symbol) {
if (!ES6.isSymbol(symbol))
throw new TypeError(String(symbol) + " is not a symbol");
var registryLength = globalSymbolRegistry.length,
record,
i = 0;
for(; i<registryLength; ++i) {
record = globalSymbolRegistry[i];
if (record.symbol === symbol)
return record.key;
}
};
/* It affects array1 and appends array2 at the end of array1 */
var appendArray = function (array1, array2) {
// Returns immediately if these are not array or not array-like objects
if (!(typeof array1.length === "number" && array1.length >= 0 && typeof array2.length === "number" && array2.length >= 0))
return;
var length1 = Math.floor(array1.length),
length2 = Math.floor(array2.length),
i = 0;
array1.length = length1 + length2;
for (; i<length2; ++i)
if (array2.hasOwnProperty(i))
array1[length1 + i] = array2[i];
};
var es6ObjectPrototypeToString = function toString() {
if (this === undefined || this === null)
return objectToString.call(this);
// Add support for @@toStringTag symbol
if (typeof this[Symbol.toStringTag] === "string")
return "[object " + this[Symbol.toStringTag] + "]";
else
return objectToString.call(this);
};
var es6ArrayPrototypeConcat = function concat() {
if (this === undefined || this === null)
throw new TypeError("Array.prototype.concat called on null or undefined");
// Boxing 'this' value to wrapper object
var self = Object(this),
targets = slice.call(arguments),
outputs = []; // Later it may affected by Symbol
targets.unshift(self);
targets.forEach(function (target) {
// If target is primitive then just push
if (!isObject(target))
outputs.push(target);
// Here Symbol.isConcatSpreadable support is added
else if (typeof target[Symbol.isConcatSpreadable] !== "undefined") {
if (target[Symbol.isConcatSpreadable]) {
appendArray(outputs, target);
} else {
outputs.push(target);
}
} else if (isArray(target)) {
appendArray(outputs, target);
} else {
outputs.push(target);
}
});
return outputs;
};
var es6ForOfLoop = function forOf(iterable, callback, thisArg) {
callback = typeof callback !== "function" ? emptyFunction : callback;
if (typeof iterable[Symbol.iterator] !== "function")
throw new TypeError("Iterable[Symbol.iterator] is not a function");
var iterator = iterable[Symbol.iterator](),
iterationResult;
if (typeof iterator.next !== "function")
throw new TypeError(".iterator.next is not a function");
while (true) {
iterationResult = iterator.next();
if (!isObject(iterationResult))
throw new TypeError("Iterator result " + iterationResult + " is not an object");
if (iterationResult.done)
break;
callback.call(thisArg, iterationResult.value);
}
};
// Provides simple inheritance functionality
var simpleInheritance = function (child, parent) {
if (typeof child !== "function" || typeof parent !== "function")
throw new TypeError("Child and Parent must be function type");
child.prototype = Object.create(parent.prototype);
child.prototype.constructor = child;
};
// Behaves as Symbol function in ES6, take description and returns an unique object,
// but in ES6 this function returns 'symbol' primitive typed value.
// Its type is 'object' not 'symbol'.
// There is no wrapping in this case i.e. Object(sym) = sym.
var Symbol = function Symbol(desc) {
desc = typeof desc === "undefined" ? "" : String(desc);
if(this instanceof Symbol)
throw new TypeError("Symbol is not a constructor");
var newInstance = setupSymbolInternals(Object.create(Symbol.prototype), desc);
symbolBucket[newInstance._id] = newInstance;
return newInstance;
};
defineProperties(Symbol, {
"for": {
value: symbolFor,
writable: true,
configurable: true
},
"keyFor": {
value: symbolKeyFor,
writable: true,
configurable: true
},
"hasInstance": {
value: Symbol("Symbol.hasInstance")
},
"isConcatSpreadable": {
value: Symbol("Symbol.isConcatSpreadable")
},
"iterator": {
value: Symbol("Symbol.iterator")
},
"toStringTag": {
value: Symbol("Symbol.toStringTag")
}
});
// In ES6, this function returns like 'Symbol(<desc>)', but in this case
// this function returns the symbol's internal name to work properly.
Symbol.prototype.toString = function () {
return generateSymbolName(this._id);
};
// Returns itself but in ES6 It returns 'symbol' typed value.
Symbol.prototype.valueOf = function () {
return this;
};
// Make Iterator like iterable
defineProperty(Iterator.prototype, Symbol.iterator.toString(), {
value: function () {return this;},
writable: true,
configurable: true
});
simpleInheritance(ArrayIterator, Iterator);
simpleInheritance(StringIterator, Iterator);
simpleInheritance(MapIterator, Iterator);
simpleInheritance(SetIterator, Iterator);
defineProperty(ArrayIterator.prototype, Symbol.toStringTag.toString(), {
value: "Array Iterator",
configurable: true
});
defineProperty(StringIterator.prototype, Symbol.toStringTag.toString(), {
value: "String Iterator",
configurable: true
});
defineProperty(MapIterator.prototype, Symbol.toStringTag.toString(), {
value: "Map Iterator",
configurable: true
});
defineProperty(SetIterator.prototype, Symbol.toStringTag.toString(), {
value: "Set Iterator",
configurable: true
});
// This iterator works on any Array or TypedArray or array-like objects
ArrayIterator.prototype.next = function next() {
if (!(this instanceof ArrayIterator))
throw new TypeError("Method Array Iterator.prototype.next called on incompatible receiver " + String(this));
var self = this,
nextValue;
if (self._nextIndex === -1) {
return {
done: true,
value: undefined
};
}
if (!(typeof self._array.length === "number" && self._array.length >= 0)) {
self._nextIndex = -1;
return {
done: true,
value: undefined
};
}
// _flag = 1 for [index, value]
// _flag = 2 for [value]
// _flag = 3 for [index]
if (self._nextIndex < Math.floor(self._array.length)) {
if (self._flag === 1)
nextValue = [self._nextIndex, self._array[self._nextIndex]];
else if (self._flag === 2)
nextValue = self._array[self._nextIndex];
else if (self._flag === 3)
nextValue = self._nextIndex;
self._nextIndex++;
return {
done: false,
value: nextValue
};
} else {
self._nextIndex = -1;
return {
done: true,
value: undefined
};
}
};
StringIterator.prototype.next = function next() {
if (!(this instanceof StringIterator))
throw new TypeError("Method String Iterator.prototype.next called on incompatible receiver " + String(this));
var self = this,
stringObject = new String(this._string),
nextValue;
if (self._nextIndex === -1) {
return {
done: true,
value: undefined
};
}
if (self._nextIndex < stringObject.length) {
nextValue = stringObject[self._nextIndex];
self._nextIndex++;
return {
done: false,
value: nextValue
};
} else {
self._nextIndex = -1;
return {
done: true,
value: undefined
};
}
};
MapIterator.prototype.next = function next() {
if (!(this instanceof MapIterator))
throw new TypeError("Method Map Iterator.prototype.next called on incompatible receiver " + String(this));
var self = this,
nextValue;
if (self._done) {
return {
done: true,
value: undefined
};
}
if (self._currentEntry === null)
self._currentEntry = self._map._head;
else
self._currentEntry = self._currentEntry.next;
if (self._currentEntry === null) {
self._done = true;
return {
done: true,
value: undefined
};
}
// _flag = 1 for [key, value]
// _flag = 2 for [value]
// _flag = 3 for [key]
if (self._flag === 1)
nextValue = [self._currentEntry.key, self._currentEntry.value];
else if (self._flag === 2)
nextValue = self._currentEntry.value;
else if (self._flag === 3)
nextValue = self._currentEntry.key;
return {
done: false,
value: nextValue
};
};
SetIterator.prototype.next = function next() {
if (!(this instanceof SetIterator))
throw new TypeError("Method Set Iterator.prototype.next called on incompatible receiver " + String(this));
var self = this,
nextValue;
if (self._done) {
return {
done: true,
value: undefined
};
}
if (self._currentEntry === null)
self._currentEntry = self._set._head;
else
self._currentEntry = self._currentEntry.next;
if (self._currentEntry === null) {
self._done = true;
return {
done: true,
value: undefined
};
}
// _flag = 1 for [value, value]
// _flag = 2 for [value]
if (self._flag === 1)
nextValue = [self._currentEntry.value, self._currentEntry.value];
else if (self._flag === 2)
nextValue = self._currentEntry.value;
return {
done: false,
value: nextValue
};
};
var es6ArrayPrototypeIteratorSymbol = function values() {
if (this === undefined || this === null)
throw new TypeError("Cannot convert undefined or null to object");
var self = Object(this);
return new ArrayIterator(self, 2);
};
var es6StringPrototypeIteratorSymbol = function values() {
if (this === undefined || this === null)
throw new TypeError("String.prototype[Symbol.iterator] called on null or undefined");
return new StringIterator(String(this), 0);
};
var es6ArrayPrototypeEntries = function entries() {
if (this === undefined || this === null)
throw new TypeError("Cannot convert undefined or null to object");
var self = Object(this);
return new ArrayIterator(self, 1);
};
var es6ArrayPrototypeKeys = function keys() {
if (this === undefined || this === null)
throw new TypeError("Cannot convert undefined or null to object");
var self = Object(this);
return new ArrayIterator(self, 3);
};
var SpreadOperatorImpl = function (target, thisArg) {
this._target = target;
this._values = [];
this._thisArg = thisArg;
};
// All the arguments must be iterable
SpreadOperatorImpl.prototype.spread = function () {
var self = this;
slice.call(arguments).forEach(function (iterable) {
ES6.forOf(iterable, function (value) {
self._values.push(value);
});
});
return self;
};
SpreadOperatorImpl.prototype.add = function () {
var self = this;
slice.call(arguments).forEach(function (value) {
self._values.push(value);
});
return self;
};
SpreadOperatorImpl.prototype.call = function (thisArg) {
if (typeof this._target !== "function")
throw new TypeError("Target is not a function");
thisArg = arguments.length <= 0 ? this._thisArg : thisArg;
return this._target.apply(thisArg, this._values);
};
SpreadOperatorImpl.prototype.new = function () {
if (typeof this._target !== "function")
throw new TypeError("Target is not a constructor");
var temp,
returnValue;
temp = Object.create(this._target.prototype);
returnValue = this._target.apply(temp, this._values);
return isObject(returnValue) ? returnValue : temp;
};
// Affects the target array
SpreadOperatorImpl.prototype.array = function () {
if (!isArray(this._target))
throw new TypeError("Target is not a array");
push.apply(this._target, this._values);
return this._target;
};
// Target must be Array or function
var es6SpreadOperator = function spreadOperator(target, thisArg) {
if (!(typeof target === "function" || isArray(target)))
throw new TypeError("Spread operator only supports on array and function objects at this moment");
return new SpreadOperatorImpl(target, thisArg);
};
/*
var es6Match = function (regexp) {
if (this === undefined || this === null)
throw new TypeError("String.prototype.match called on null or undefined");
if (regexp === undefined || regexp === null)
return match.call(this, new RegExp(regexp));
regexp = Object(regexp);
var matchSymbol = regexp[Symbol.match];
if (typeof matchSymbol !== "undefined") {
if (typeof matchSymbol !== "function")
throw new TypeError(typeof matchSymbol + " is not a function");
else {
return matchSymbol.call(regexp, this);
}
} else {
return match.call(this, new RegExp(String(regexp)));
}
};
*/
var es6ArrayFrom = function from(arrayLike, mapFn, thisArg) {
var constructor,
i = 0,
length,
outputs;
// Use the generic constructor
constructor = !isConstructor(this) ? Array : this;
if (arrayLike === undefined || arrayLike === null)
throw new TypeError("Cannot convert undefined or null to object");
arrayLike = Object(arrayLike);
if (mapFn === undefined)
mapFn = simpleFunction;
else if (!isCallable(mapFn))
throw new TypeError(mapFn + " is not a function");
if (typeof arrayLike[Symbol.iterator] === "undefined") {
if (!(typeof arrayLike.length === "number" && arrayLike.length >= 0)) {
outputs = new constructor(0);
outputs.length = 0;
return outputs;
}
length = Math.floor(arrayLike.length);
outputs = new constructor(length);
outputs.length = length;
for(; i < length; ++i)
outputs[i] = mapFn.call(thisArg, arrayLike[i]);
} else {
outputs = new constructor();
outputs.length = 0;
ES6.forOf(arrayLike, function (value) {
outputs.length++;
outputs[outputs.length - 1] = mapFn.call(thisArg, value);
});
}
return outputs;
};
var es6ArrayOf = function of() {
var constructor,
outputs,
length,
i = 0;
// Use the generic constructor
constructor = !isConstructor(this) ? Array : this;
length = arguments.length;
outputs = new constructor(length);
outputs.length = length;
for(; i < length; ++i) {
outputs[i] = arguments[i];
}
return outputs;
};
var es6ArrayPrototypeFill = function fill(value, start, end) {
if (this === undefined || this === null)
throw new TypeError("Array.prototype.fill called on null or undefined");
var self = Object(this),
i = 0,
length;
if (typeof self.length === "number" && self.length >= 0) {
length = Math.floor(self.length);
start = start === undefined ? 0 : Math.floor(Number(start));
end = end === undefined ? length : Math.floor(Number(end));
start = start < 0 ? start + length : start;
end = end < 0 ? end + length : end;
start = start < 0 ? 0 : start;
end = end > length ? length : end;
for(i = start; i < end; ++i)
self[i] = value;
}
return self;
};
var es6ArrayPrototypeFind = function find(callback, thisArg) {
if (this === undefined || this === null)
throw new TypeError("Array.prototype.find called on null or undefined");
if (!isCallable(callback))
throw new TypeError(callback + " is not a function");
var self = Object(this),
i = 0,
length;
if (typeof self.length === "number" && self.length >= 0) {
length = Math.floor(self.length);
for (; i < length; ++i) {
if (callback.call(thisArg, self[i], i, self))
return self[i];
}
}
};
var es6ArrayPrototypeFindIndex = function findIndex(callback, thisArg) {
if (this === undefined || this === null)
throw new TypeError("Array.prototype.findIndex called on null or undefined");
if (!isCallable(callback))
throw new TypeError(callback + " is not a function");
var self = Object(this),
i = 0,
length;
if (typeof self.length === "number" && self.length >= 0) {
length = Math.floor(self.length);
for (; i < length; ++i) {
if (callback.call(thisArg, self[i], i, self))
return i;
}
}
return -1;
};
var es6ArrayPrototypeCopyWithin = function copyWithin(target, start) {
if (this == undefined || this === null) {
throw new TypeError("Array.prototype.copyWithin called on null or undefined");
}
var self = Object(this),
length = self.length >>> 0,
relativeTarget = target >> 0,
to = relativeTarget < 0 ? max(length + relativeTarget, 0) : min(relativeTarget, length),
relativeStart = start >> 0,
from = relativeStart < 0 ? max(length + relativeStart, 0) : min(relativeStart, length),
end = arguments[2],
relativeEnd = end === undefined ? length : end >> 0,
final = relativeEnd < 0 ? max(length + relativeEnd, 0) : min(relativeEnd, length),
count = min(final - from, length - to),
direction = 1;
if (from < to && to < (from + count)) {
direction = -1;
from += count - 1;
to += count - 1;
}
while (count > 0) {
if (from in self) {
self[to] = self[from];
} else {
delete self[to];
}
from += direction;
to += direction;
count--;
}
return self;
};
// Returns hash for primitive typed key like this:
// undefined or null => I___toString(key)
// number => N___toString(key)
// string => S___toString(key)
// boolean => B___toString(key)
//
// But returns null for object typed key.
var hash = function (key) {
// String(0) === String(-0)
// String(NaN) === String(NaN)
var strKey = String(key);
if (key === undefined || key === null)
return "I___" + strKey;
else if (typeof key === "number")
return "N___" + strKey;
else if (typeof key === "string")
return "S___" + strKey;
else if (typeof key === "boolean")
return "B___" + strKey;
else
return null; /* For object key */
};
var Map = function Map(iterable) {
if (!(this instanceof Map) || isMap(this))
throw new TypeError("Constructor Map requires 'new'");
setupMapInternals(this);
if (iterable !== null && iterable !== undefined) {
ES6.forOf(iterable, function (entry) {
if (!isObject(entry))
throw new TypeError("Iterator value " + entry + " is not an entry object");
this.set(entry[0], entry[1]);
}, this);
}
};
// WARNING: This method puts a link in the key object to reduce time complexity to O(1).
// So, after map.set(key, value) call, if the linker property of the key object is deleted
// then map.has(key) will returns false.
// Time complexity: O(1) for all cases(there is no worst case, same for both primitive and object key).
// Space complexity is O(n) for all cases.
Map.prototype.set = function set(key, value) {
if (!isMap(this))
throw new TypeError("Method Map.prototype.set called on incompatible receiver " + this);
var keyHash = hash(key),
objectHash = this._objectHash,
entry;
if (keyHash === null) {
if (typeof key[objectHash] === "number" && this._data.objects[key[objectHash]] instanceof MapEntry) {
entry = this._data.objects[key[objectHash]];
entry.value = value;
return this;
}
entry = new MapEntry(key, value);
this._data.objects.push(entry);
defineProperty(key, objectHash.toString(), {
value: this._data.objects.length - 1,
configurable: true
});
this._size++;
} else {
if (this._data.primitives[keyHash] instanceof MapEntry) {
entry = this._data.primitives[keyHash];
entry.value = value;
return this;
}
entry = new MapEntry(key, value);
this._data.primitives[keyHash] = entry;
this._size++;
}
if (this._head === null) {
this._head = entry;
entry.next = null;
entry.prev = null;
}
if (this._tail === null)
this._tail = this._head;
else {
this._tail.next = entry;
entry.prev = this._tail;
entry.next = null;
this._tail = entry;
}
return this;
};
// Time complexity: O(1) for all cases(there is no worst case, same for both primitive and object key).
// Space complexity is O(1)
Map.prototype.has = function has(key) {
if (!isMap(this))
throw new TypeError("Method Map.prototype.has called on incompatible receiver " + this);
var keyHash = hash(key),
objectHash = this._objectHash;
if (keyHash === null)
return typeof key[objectHash] === "number" && this._data.objects[key[objectHash]] instanceof MapEntry;
else
return this._data.primitives[keyHash] instanceof MapEntry;
};
// Time complexity: O(1) for all cases(there is no worst case, same for both primitive and object key).
// Space complexity is O(1)
Map.prototype.get = function get(key) {
if (!isMap(this))
throw new TypeError("Method Map.prototype.get called on incompatible receiver " + this);
var keyHash = hash(key),
objectHash = this._objectHash;
if (keyHash === null) {
if (typeof key[objectHash] === "number" && this._data.objects[key[objectHash]] instanceof MapEntry)
return this._data.objects[key[objectHash]].value;
} else {
if (this._data.primitives[keyHash] instanceof MapEntry)
return this._data.primitives[keyHash].value;
}
};
// Time complexity: O(n)
// Space complexity is O(1)
Map.prototype.clear = function clear() {
if (!isMap(this))
throw new TypeError("Method Map.prototype.clear called on incompatible receiver " + this);
var entry;
// Clear all primitive keys
Object.getOwnPropertyNames(this._data.primitives).forEach(function (prop) {
if (this._data.primitives[prop] instanceof MapEntry) {
entry = this._data.primitives[prop];
delete this._data.primitives[prop];
entry.next = null;
entry.prev = null;
}
}, this);
// Clear all object keys
Object.getOwnPropertyNames(this._data.objects).forEach(function (prop) {
if (this._data.objects[prop] instanceof MapEntry) {
entry = this._data.objects[prop];
delete this._data.objects[prop];
delete entry.key[this._objectHash];
entry.next = null;
entry.prev = null;
}
}, this);
this._data.objects.length = 0;
// Free head and tail MapEntry
this._head = null;
this._tail = null;
this._size = 0;
};
// Time complexity: O(1) for all cases(there is no worst case, same for both primitive and object key).
// Space complexity is O(1)
Map.prototype.delete = function (key) {
if (!isMap(this))
throw new TypeError("Method Map.prototype.delete called on incompatible receiver " + this);
var keyHash = hash(key),
objectHash = this._objectHash,
entry;
if (keyHash === null) {
if (typeof key[objectHash] === "number" && this._data.objects[key[objectHash]] instanceof MapEntry) {
entry = this._data.objects[key[objectHash]];
delete this._data.objects[key[objectHash]];
delete entry.key[objectHash];
} else
return false;
} else {
if (this._data.primitives[keyHash] instanceof MapEntry) {
entry = this._data.primitives[keyHash];
delete this._data.primitives[keyHash];
} else {
return false;
}
}
if (entry.prev !== null && entry.next !== null) {
entry.prev.next = entry.next;
entry.next.prev = entry.prev;
entry.next = null;
entry.prev = null;
} else if(entry.prev === null && entry.next !== null) {
this._head = entry.next;
entry.next.prev = null;
entry.next = null;
} if (entry.prev !== null && entry.next === null) {
this._tail = entry.prev;
entry.prev.next = null;
entry.prev = null;
} else {
this._head = null;
this._tail = null;
}
this._size--;
return true;
};
defineProperty(Map.prototype, "size", {