-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolyfills.js
399 lines (296 loc) · 11 KB
/
polyfills.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
/*
map
filter
some
reduce
forEach
chunk
find
findIndex
indexOf
includes
bind
apply
call
promiseAll
*/
/*----------------------------------------map--------------------------------*/
Array.prototype.myMap = function(func) {
let resp = [], arr = this;
for (let i = 0; i < arr.length; i++) {
resp[i] = func(arr[i], i);
}
return resp;
}
const arr = [...Array(10).keys()];
const myMapResp = arr.myMap((item) => item * 2);
// console.log("org arr", arr)
// console.log("myMapResp", myMapResp)
/*----------------------------------------filter--------------------------------*/
Array.prototype.myFilter = function(func) {
let resp = [], arr = this;
for (let i = 0; i < arr.length; i++) {
if (func(arr[i], i)) resp.push(arr[i])
}
return resp
}
const myFilterResp = arr.myFilter((item) => item % 2 == 0);
// console.log("myFilterResp", myFilterResp)
/*----------------------------------------some--------------------------------*/
Array.prototype.mySome = function(func) {
let arr = this;
for (let i = 0; i < arr.length; i++) {
if (func(arr[i], i)) return true;
}
return false;
}
const mySomeResp = arr.mySome((item) => item > 8);
// console.log("mySomeResp", mySomeResp)
/*----------------------------------------reduce--------------------------------*/
Array.prototype.myReduce = function(func, initialVal) {
const arr = this;
const hasInitialVal = arguments.length > 1; // if initialVal paramater is passed, then length of arguments will be greater than 1
let resp = hasInitialVal ? initialVal : arr[0];
for (let i = (hasInitialVal ? 0 : 1); i < arr.length; i++) {
resp = func(resp, arr[i], i);
}
return resp;
}
const myReduceResp = arr.myReduce((acc, item, index) => {
acc[index] = index + item;
return acc;
}, {});
// console.log("myReduceResp", myReduceResp)
/*----------------------------------------forEach--------------------------------*/
Array.prototype.myForEach = function(func) {
for (let i = 0; i < this.length; i++) func(this[i], i);
}
// arr.forEach((item, index) => console.log(index, item));
/*----------------------------------------chunk--------------------------------*/
// https://leetcode.com/problems/chunk-array/description/?envType=study-plan-v2&envId=30-days-of-javascript
Array.prototype.chunk = function(size) {
const arr = this;
let accIdx = 0, tempSize = 0;
return arr.reduce((acc, item, idx) => {
acc[accIdx] = [...(acc[accIdx] || []), item];
tempSize++;
if (tempSize === size) {
tempSize = 0;
accIdx++;
}
return acc;
}, []);
};
let arr2 = [1, 2, 3, 4, 5], size = 3;
const chunkArr = arr2.chunk(size);
// console.log("chunkArr", chunkArr);
/*----------------------------------------find--------------------------------*/
Array.prototype.myFind = function(func) {
for (let i = 0; i < this.length; i++) {
let item = this[i]
if (func(item, i)) return item
};
return;
}
const newArrByFind = arr.myFind((item, index) => (item % 2 == 1) && (item > 3));
// console.log("newArrByFind", newArrByFind);
/*----------------------------------------findIndex--------------------------------*/
Array.prototype.myfindIndex = function(func) {
for (let i = 0; i < this.length; i++) {
let item = this[i]
if (func(item, i)) return i
};
return -1;
}
const newArrByfindIndex = arr.myfindIndex((item, index) => (item % 2 == 1) && (item > 3));
// console.log("newArrByfindIndex", newArrByfindIndex);
/*----------------------------------------indexOf--------------------------------*/
Array.prototype.myIndexOf = function(toFind, startIdx = 0) {
let arr = this;
for (let idx = (startIdx || 0); idx < arr.length; idx++) {
if (arr[idx] === toFind) return idx;
}
return -1;
}
const myIndexOfResp = arr.myIndexOf(5, 5);
// console.log("myIndexOfResp", myIndexOfResp);
/*----------------------------------------includes--------------------------------*/
Array.prototype.myIncludes = function(toFind, startIdx = 0) {
let arr = this;
for (let idx = (startIdx || 0); idx < arr.length; idx++) {
if (arr[idx] === toFind) return true;
}
return false;
}
const myIncludesResp = arr.myIncludes(5);
// console.log("myIncludesResp", myIncludesResp);
/*----------------------------------------bind--------------------------------*/
Function.prototype.myBind = function(givenThis, ...args) {
let func = this;
return function(...args2) {
return func.call(givenThis, ...args, ...args2)
}
}
function printName(state, country) {
const res = this.firstName + " " + this.lastName + " from " + state + ", " + country;
// console.log(res);
return res;
}
const nameObj = { firstName: "aditya", lastName: "suman" };
const printMyName = printName.myBind(nameObj, "delhi", "india");
// const myBindResp = printMyName();
// console.log("myBindResp", myBindResp)
/*----------------------------------------apply--------------------------------*/
Function.prototype.myApply = function(givenThis, args = []) {
return this.call(givenThis, ...args)
}
Function.prototype.myApply2 = function(givenThis, args = []) {
givenThis.func = this; // creating a key of the function in the givenThis object
const res = givenThis.func(...args);
delete givenThis.func; // deleting the key of the function in the givenThis object
return res;
}
const myApplyResp = printName.myApply2(nameObj, ["kathmandu", "nepal"]);
console.log("myApplyResp", myApplyResp);
console.log("nameObj.func", nameObj.func);
/*----------------------------------------call--------------------------------*/
Function.prototype.myCall = function(givenThis, ...args) {
return this.apply(givenThis, args);
}
Function.prototype.myCall2 = function(givenThis, ...args) {
givenThis.func = this; // creating a key of the function in the givenThis object
const res = givenThis.func(...args);
delete givenThis.func; // deleting the key of the function in the givenThis object
return res;
}
const myCallResp = printName.myCall2(nameObj, "thimpu", "bhutan");
console.log("myCallResp", myCallResp);
console.log("nameObj.func", nameObj.func);
/*----------------------------------------compose--------------------------------*/
const addOne = x => x + 1;
const multiplyByTwo = x => x * 2;
const square = x => x * x;
// The compose() function takes a list of functions and returns a new function. This new function, when called with an argument, will apply the functions from right to left.
function compose(...funcs) {
return function(intialVal) {
let res = intialVal
for (let i = funcs.length - 1; i >= 0; i--) {
res = funcs[i](res);
}
return res;
}
}
const composedFunction = compose(square, multiplyByTwo, addOne);
const result1 = composedFunction(3); // Equivalent to square(multiplyByTwo(addOne(3)))
console.log("composedFunction result", result1); // Output: 64
/*----------------------------------------pipe--------------------------------*/
// The pipe() function is similar to compose(), but it applies the functions from left to right.
function pipe(...funcs) {
return function(intialVal) {
let res = intialVal
for (let i = 0; i < funcs.length; i++) {
res = funcs[i](res);
}
return res;
}
}
const pipedFunction = pipe(square, multiplyByTwo, addOne);
const result2 = pipedFunction(3); // Equivalent to square(multiplyByTwo(addOne(3)))
console.log("pipedFunction result", result2); // Output: 19
/*----------------------------------------String trim--------------------------------*/
String.prototype.trim = function() {
let str = this;
let start, end;
for (let i = 0; i < str.length; i++) {
let char = (str[i]);
if (![" ", "", "\s", "\t", "\n", "\u3000"].includes(char)) {
if (start === undefined) start = i;
end = i;
}
}
return str.substring(start, end + 1);
}
// console.log(('a').trim //.toBe('a')
// console.log(('a ').trim) //.toBe('a')
// console.log((' a b ').trim) //.toBe('a b')
console.log("yo" + (' aa \u3000').trim() + "yo"); //.toBe('aa')
console.log("yo" + (' ✌️ \u3000').trim() + "yo"); //.toBe('✌️')
/*----------------------------------------promise All--------------------------------*/
Promise.myPromiseAll = function(promiseArr) {
let resp = [], c = 0;
return new Promise(function(resolve, reject) {
if (promiseArr.length === 0) resolve(resp); // no item in array
for (let i = 0; i < promiseArr.length; i++) {
if (typeof promiseArr[i] === "object") { // if that array item is promise
promiseArr[i]
.then(promResp => {
resp[i] = promResp;
c++;
if (c === promiseArr.length) resolve(resp)
})
.catch(error => reject(error));
} else {
resp[i] = promiseArr[i];
c++;
if (c === promiseArr.length) resolve(resp)
}
}
});
}
const promA = Promise.resolve(1);
const PromB = new Promise(function(resolve, reject) {
setTimeout(() => {
resolve(2)
}, 1000);
});
function promC() {
return new Promise(function(resolve, reject) {
setTimeout(() => {
resolve(3);
}, 2000);
});
}
// Promise.myPromiseAll([promA, promC(), PromB,])
// .then(resp => {
// console.log("resp", resp)
// })
// .catch(error => {
// console.log("error", error)
// });
/*----------------------------------------promise All settled--------------------------------*/
Promise.myPromiseAllSettled = function(promiseArr) {
let resp = [], c = 0;
return new Promise(function(resolve, reject) {
if (promiseArr.length === 0) resolve(resp); // no item in array
for (let i = 0; i < promiseArr.length; i++) {
if (typeof promiseArr[i] === "object") { // if that array item is promise
promiseArr[i]
.then(promResp => {
resp[i] = { status: "fulfilled", value: promResp };
c++;
if (c === promiseArr.length) resolve(resp)
})
.catch(error => {
resp[i] = { status: "rejected", reason: error };
c++;
if (c === promiseArr.length) resolve(resp)
});
} else {
resp[i] = { status: 'fulfilled', value: promiseArr[i] };
c++;
if (c === promiseArr.length) resolve(resp)
}
}
});
}
// Promise.myPromiseAllSettled([1, 2, 3, Promise.resolve(4)]).then((value) => {
// console.log(value);
// /*
// [
// { status: 'fulfilled', value: 1 },
// { status: 'fulfilled', value: 2 },
// { status: 'fulfilled', value: 3 },
// { status: 'fulfilled', value: 4 }
// ]
// */
// });