@ketch-sdk/ketch-data-layer 1.1.0 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/dist/cookie/fetcher.js +26 -0
  2. package/dist/cookie/index.js +12 -0
  3. package/dist/cookie/util.js +44 -0
  4. package/dist/dataLayer/fetcher.js +30 -0
  5. package/dist/dataLayer/index.js +9 -0
  6. package/dist/index.d.ts +1 -1
  7. package/dist/index.js +220 -1
  8. package/dist/json/index.js +9 -0
  9. package/dist/json/structure.js +11 -0
  10. package/dist/jwt/index.js +9 -0
  11. package/dist/jwt/structure.js +11 -0
  12. package/dist/listener/index.js +3 -0
  13. package/dist/localStorage/fetcher.js +5 -0
  14. package/dist/localStorage/index.js +9 -0
  15. package/dist/managed/fetcher.js +34 -0
  16. package/dist/managed/index.js +9 -0
  17. package/dist/mapper/index.js +3 -0
  18. package/dist/queryString/fetcher.js +21 -0
  19. package/dist/queryString/index.js +11 -0
  20. package/dist/queryString/structure.js +11 -0
  21. package/dist/semicolon/index.js +9 -0
  22. package/dist/semicolon/structure.js +12 -0
  23. package/dist/sessionStorage/fetcher.js +5 -0
  24. package/dist/sessionStorage/index.js +9 -0
  25. package/dist/storage/fetcher.js +33 -0
  26. package/dist/storage/index.js +11 -0
  27. package/dist/storage/notifier.js +10 -0
  28. package/dist/string/index.js +9 -0
  29. package/dist/string/structure.js +9 -0
  30. package/dist/structure/index.js +3 -0
  31. package/dist/window/fetcher.js +66 -0
  32. package/dist/window/index.js +9 -0
  33. package/package.json +1 -1
  34. package/dist/cookie/index.test.d.ts +0 -1
  35. package/dist/dataLayer/index.test.d.ts +0 -1
  36. package/dist/index.test.d.ts +0 -1
  37. package/dist/json/index.test.d.ts +0 -1
  38. package/dist/jwt/index.test.d.ts +0 -1
  39. package/dist/licenses.txt +0 -992
  40. package/dist/localStorage/index.test.d.ts +0 -1
  41. package/dist/managed/index.test.d.ts +0 -1
  42. package/dist/queryString/index.test.d.ts +0 -1
  43. package/dist/semicolon/index.test.d.ts +0 -1
  44. package/dist/sessionStorage/index.test.d.ts +0 -1
  45. package/dist/storage/index.test.d.ts +0 -1
  46. package/dist/string/index.test.d.ts +0 -1
  47. package/dist/window/index.test.d.ts +0 -6
package/dist/licenses.txt DELETED
@@ -1,992 +0,0 @@
1
- @ketch-sdk/ketch-types
2
- MIT
3
-
4
- available-typed-arrays
5
- MIT
6
- MIT License
7
-
8
- Copyright (c) 2020 Inspect JS
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in all
18
- copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- SOFTWARE.
27
-
28
-
29
- call-bind
30
- MIT
31
- MIT License
32
-
33
- Copyright (c) 2020 Jordan Harband
34
-
35
- Permission is hereby granted, free of charge, to any person obtaining a copy
36
- of this software and associated documentation files (the "Software"), to deal
37
- in the Software without restriction, including without limitation the rights
38
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
39
- copies of the Software, and to permit persons to whom the Software is
40
- furnished to do so, subject to the following conditions:
41
-
42
- The above copyright notice and this permission notice shall be included in all
43
- copies or substantial portions of the Software.
44
-
45
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
46
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
47
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
48
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
49
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
50
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
51
- SOFTWARE.
52
-
53
-
54
- deep-equal
55
- MIT
56
- MIT License
57
-
58
- Copyright (c) 2012, 2013, 2014 James Halliday <mail@substack.net>, 2009 Thomas Robinson <280north.com>
59
-
60
- Permission is hereby granted, free of charge, to any person obtaining a copy
61
- of this software and associated documentation files (the "Software"), to deal
62
- in the Software without restriction, including without limitation the rights
63
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
64
- copies of the Software, and to permit persons to whom the Software is
65
- furnished to do so, subject to the following conditions:
66
-
67
- The above copyright notice and this permission notice shall be included in all
68
- copies or substantial portions of the Software.
69
-
70
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
71
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
72
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
73
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
74
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
75
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
76
- SOFTWARE.
77
-
78
-
79
- define-properties
80
- MIT
81
- The MIT License (MIT)
82
-
83
- Copyright (C) 2015 Jordan Harband
84
-
85
- Permission is hereby granted, free of charge, to any person obtaining a copy
86
- of this software and associated documentation files (the "Software"), to deal
87
- in the Software without restriction, including without limitation the rights
88
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
89
- copies of the Software, and to permit persons to whom the Software is
90
- furnished to do so, subject to the following conditions:
91
-
92
- The above copyright notice and this permission notice shall be included in
93
- all copies or substantial portions of the Software.
94
-
95
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
96
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
97
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
98
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
99
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
100
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
101
- THE SOFTWARE.
102
-
103
- es-get-iterator
104
- MIT
105
- MIT License
106
-
107
- Copyright (c) 2019 Jordan Harband
108
-
109
- Permission is hereby granted, free of charge, to any person obtaining a copy
110
- of this software and associated documentation files (the "Software"), to deal
111
- in the Software without restriction, including without limitation the rights
112
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
113
- copies of the Software, and to permit persons to whom the Software is
114
- furnished to do so, subject to the following conditions:
115
-
116
- The above copyright notice and this permission notice shall be included in all
117
- copies or substantial portions of the Software.
118
-
119
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
120
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
121
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
122
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
123
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
124
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
125
- SOFTWARE.
126
-
127
-
128
- for-each
129
- MIT
130
- The MIT License (MIT)
131
-
132
- Copyright (c) 2012 Raynos.
133
-
134
- Permission is hereby granted, free of charge, to any person obtaining a copy
135
- of this software and associated documentation files (the "Software"), to deal
136
- in the Software without restriction, including without limitation the rights
137
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
138
- copies of the Software, and to permit persons to whom the Software is
139
- furnished to do so, subject to the following conditions:
140
-
141
- The above copyright notice and this permission notice shall be included in all
142
- copies or substantial portions of the Software.
143
-
144
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
145
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
146
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
147
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
148
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
149
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
150
- SOFTWARE.
151
-
152
-
153
-
154
- function-bind
155
- MIT
156
- Copyright (c) 2013 Raynos.
157
-
158
- Permission is hereby granted, free of charge, to any person obtaining a copy
159
- of this software and associated documentation files (the "Software"), to deal
160
- in the Software without restriction, including without limitation the rights
161
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
162
- copies of the Software, and to permit persons to whom the Software is
163
- furnished to do so, subject to the following conditions:
164
-
165
- The above copyright notice and this permission notice shall be included in
166
- all copies or substantial portions of the Software.
167
-
168
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
169
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
170
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
171
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
172
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
173
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
174
- THE SOFTWARE.
175
-
176
-
177
-
178
- functions-have-names
179
- MIT
180
- MIT License
181
-
182
- Copyright (c) 2019 Jordan Harband
183
-
184
- Permission is hereby granted, free of charge, to any person obtaining a copy
185
- of this software and associated documentation files (the "Software"), to deal
186
- in the Software without restriction, including without limitation the rights
187
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
188
- copies of the Software, and to permit persons to whom the Software is
189
- furnished to do so, subject to the following conditions:
190
-
191
- The above copyright notice and this permission notice shall be included in all
192
- copies or substantial portions of the Software.
193
-
194
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
195
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
196
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
197
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
198
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
199
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
200
- SOFTWARE.
201
-
202
-
203
- get-intrinsic
204
- MIT
205
- MIT License
206
-
207
- Copyright (c) 2020 Jordan Harband
208
-
209
- Permission is hereby granted, free of charge, to any person obtaining a copy
210
- of this software and associated documentation files (the "Software"), to deal
211
- in the Software without restriction, including without limitation the rights
212
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
213
- copies of the Software, and to permit persons to whom the Software is
214
- furnished to do so, subject to the following conditions:
215
-
216
- The above copyright notice and this permission notice shall be included in all
217
- copies or substantial portions of the Software.
218
-
219
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
220
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
221
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
222
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
223
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
224
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
225
- SOFTWARE.
226
-
227
-
228
- gopd
229
- MIT
230
- MIT License
231
-
232
- Copyright (c) 2022 Jordan Harband
233
-
234
- Permission is hereby granted, free of charge, to any person obtaining a copy
235
- of this software and associated documentation files (the "Software"), to deal
236
- in the Software without restriction, including without limitation the rights
237
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
238
- copies of the Software, and to permit persons to whom the Software is
239
- furnished to do so, subject to the following conditions:
240
-
241
- The above copyright notice and this permission notice shall be included in all
242
- copies or substantial portions of the Software.
243
-
244
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
245
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
246
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
247
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
248
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
249
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
250
- SOFTWARE.
251
-
252
-
253
- has
254
- MIT
255
- Copyright (c) 2013 Thiago de Arruda
256
-
257
- Permission is hereby granted, free of charge, to any person
258
- obtaining a copy of this software and associated documentation
259
- files (the "Software"), to deal in the Software without
260
- restriction, including without limitation the rights to use,
261
- copy, modify, merge, publish, distribute, sublicense, and/or sell
262
- copies of the Software, and to permit persons to whom the
263
- Software is furnished to do so, subject to the following
264
- conditions:
265
-
266
- The above copyright notice and this permission notice shall be
267
- included in all copies or substantial portions of the Software.
268
-
269
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
270
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
271
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
272
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
273
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
274
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
275
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
276
- OTHER DEALINGS IN THE SOFTWARE.
277
-
278
-
279
- has-bigints
280
- MIT
281
- MIT License
282
-
283
- Copyright (c) 2019 Jordan Harband
284
-
285
- Permission is hereby granted, free of charge, to any person obtaining a copy
286
- of this software and associated documentation files (the "Software"), to deal
287
- in the Software without restriction, including without limitation the rights
288
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
289
- copies of the Software, and to permit persons to whom the Software is
290
- furnished to do so, subject to the following conditions:
291
-
292
- The above copyright notice and this permission notice shall be included in all
293
- copies or substantial portions of the Software.
294
-
295
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
296
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
297
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
298
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
299
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
300
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
301
- SOFTWARE.
302
-
303
-
304
- has-property-descriptors
305
- MIT
306
- MIT License
307
-
308
- Copyright (c) 2022 Inspect JS
309
-
310
- Permission is hereby granted, free of charge, to any person obtaining a copy
311
- of this software and associated documentation files (the "Software"), to deal
312
- in the Software without restriction, including without limitation the rights
313
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
314
- copies of the Software, and to permit persons to whom the Software is
315
- furnished to do so, subject to the following conditions:
316
-
317
- The above copyright notice and this permission notice shall be included in all
318
- copies or substantial portions of the Software.
319
-
320
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
321
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
322
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
323
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
324
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
325
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
326
- SOFTWARE.
327
-
328
-
329
- has-symbols
330
- MIT
331
- MIT License
332
-
333
- Copyright (c) 2016 Jordan Harband
334
-
335
- Permission is hereby granted, free of charge, to any person obtaining a copy
336
- of this software and associated documentation files (the "Software"), to deal
337
- in the Software without restriction, including without limitation the rights
338
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
339
- copies of the Software, and to permit persons to whom the Software is
340
- furnished to do so, subject to the following conditions:
341
-
342
- The above copyright notice and this permission notice shall be included in all
343
- copies or substantial portions of the Software.
344
-
345
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
346
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
347
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
348
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
349
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
350
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
351
- SOFTWARE.
352
-
353
-
354
- has-tostringtag
355
- MIT
356
- MIT License
357
-
358
- Copyright (c) 2021 Inspect JS
359
-
360
- Permission is hereby granted, free of charge, to any person obtaining a copy
361
- of this software and associated documentation files (the "Software"), to deal
362
- in the Software without restriction, including without limitation the rights
363
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
364
- copies of the Software, and to permit persons to whom the Software is
365
- furnished to do so, subject to the following conditions:
366
-
367
- The above copyright notice and this permission notice shall be included in all
368
- copies or substantial portions of the Software.
369
-
370
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
371
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
372
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
373
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
374
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
375
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
376
- SOFTWARE.
377
-
378
-
379
- is-arguments
380
- MIT
381
- The MIT License (MIT)
382
-
383
- Copyright (c) 2014 Jordan Harband
384
-
385
- Permission is hereby granted, free of charge, to any person obtaining a copy of
386
- this software and associated documentation files (the "Software"), to deal in
387
- the Software without restriction, including without limitation the rights to
388
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
389
- the Software, and to permit persons to whom the Software is furnished to do so,
390
- subject to the following conditions:
391
-
392
- The above copyright notice and this permission notice shall be included in all
393
- copies or substantial portions of the Software.
394
-
395
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
396
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
397
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
398
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
399
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
400
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
401
-
402
-
403
- is-bigint
404
- MIT
405
- MIT License
406
-
407
- Copyright (c) 2018 Jordan Harband
408
-
409
- Permission is hereby granted, free of charge, to any person obtaining a copy
410
- of this software and associated documentation files (the "Software"), to deal
411
- in the Software without restriction, including without limitation the rights
412
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
413
- copies of the Software, and to permit persons to whom the Software is
414
- furnished to do so, subject to the following conditions:
415
-
416
- The above copyright notice and this permission notice shall be included in all
417
- copies or substantial portions of the Software.
418
-
419
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
420
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
421
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
422
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
423
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
424
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
425
- SOFTWARE.
426
-
427
-
428
- is-boolean-object
429
- MIT
430
- The MIT License (MIT)
431
-
432
- Copyright (c) 2015 Jordan Harband
433
-
434
- Permission is hereby granted, free of charge, to any person obtaining a copy
435
- of this software and associated documentation files (the "Software"), to deal
436
- in the Software without restriction, including without limitation the rights
437
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
438
- copies of the Software, and to permit persons to whom the Software is
439
- furnished to do so, subject to the following conditions:
440
-
441
- The above copyright notice and this permission notice shall be included in all
442
- copies or substantial portions of the Software.
443
-
444
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
445
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
446
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
447
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
448
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
449
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
450
- SOFTWARE.
451
-
452
-
453
-
454
- is-callable
455
- MIT
456
- The MIT License (MIT)
457
-
458
- Copyright (c) 2015 Jordan Harband
459
-
460
- Permission is hereby granted, free of charge, to any person obtaining a copy
461
- of this software and associated documentation files (the "Software"), to deal
462
- in the Software without restriction, including without limitation the rights
463
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
464
- copies of the Software, and to permit persons to whom the Software is
465
- furnished to do so, subject to the following conditions:
466
-
467
- The above copyright notice and this permission notice shall be included in all
468
- copies or substantial portions of the Software.
469
-
470
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
471
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
472
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
473
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
474
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
475
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
476
- SOFTWARE.
477
-
478
-
479
-
480
- is-date-object
481
- MIT
482
- The MIT License (MIT)
483
-
484
- Copyright (c) 2015 Jordan Harband
485
-
486
- Permission is hereby granted, free of charge, to any person obtaining a copy
487
- of this software and associated documentation files (the "Software"), to deal
488
- in the Software without restriction, including without limitation the rights
489
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
490
- copies of the Software, and to permit persons to whom the Software is
491
- furnished to do so, subject to the following conditions:
492
-
493
- The above copyright notice and this permission notice shall be included in all
494
- copies or substantial portions of the Software.
495
-
496
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
497
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
498
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
499
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
500
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
501
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
502
- SOFTWARE.
503
-
504
-
505
-
506
- is-map
507
- MIT
508
- MIT License
509
-
510
- Copyright (c) 2019 Inspect JS
511
-
512
- Permission is hereby granted, free of charge, to any person obtaining a copy
513
- of this software and associated documentation files (the "Software"), to deal
514
- in the Software without restriction, including without limitation the rights
515
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
516
- copies of the Software, and to permit persons to whom the Software is
517
- furnished to do so, subject to the following conditions:
518
-
519
- The above copyright notice and this permission notice shall be included in all
520
- copies or substantial portions of the Software.
521
-
522
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
523
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
524
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
525
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
526
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
527
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
528
- SOFTWARE.
529
-
530
-
531
- is-number-object
532
- MIT
533
- The MIT License (MIT)
534
-
535
- Copyright (c) 2015 Jordan Harband
536
-
537
- Permission is hereby granted, free of charge, to any person obtaining a copy
538
- of this software and associated documentation files (the "Software"), to deal
539
- in the Software without restriction, including without limitation the rights
540
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
541
- copies of the Software, and to permit persons to whom the Software is
542
- furnished to do so, subject to the following conditions:
543
-
544
- The above copyright notice and this permission notice shall be included in all
545
- copies or substantial portions of the Software.
546
-
547
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
548
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
549
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
550
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
551
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
552
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
553
- SOFTWARE.
554
-
555
-
556
-
557
- is-regex
558
- MIT
559
- The MIT License (MIT)
560
-
561
- Copyright (c) 2014 Jordan Harband
562
-
563
- Permission is hereby granted, free of charge, to any person obtaining a copy of
564
- this software and associated documentation files (the "Software"), to deal in
565
- the Software without restriction, including without limitation the rights to
566
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
567
- the Software, and to permit persons to whom the Software is furnished to do so,
568
- subject to the following conditions:
569
-
570
- The above copyright notice and this permission notice shall be included in all
571
- copies or substantial portions of the Software.
572
-
573
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
574
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
575
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
576
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
577
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
578
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
579
-
580
-
581
- is-set
582
- MIT
583
- MIT License
584
-
585
- Copyright (c) 2019 Inspect JS
586
-
587
- Permission is hereby granted, free of charge, to any person obtaining a copy
588
- of this software and associated documentation files (the "Software"), to deal
589
- in the Software without restriction, including without limitation the rights
590
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
591
- copies of the Software, and to permit persons to whom the Software is
592
- furnished to do so, subject to the following conditions:
593
-
594
- The above copyright notice and this permission notice shall be included in all
595
- copies or substantial portions of the Software.
596
-
597
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
598
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
599
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
600
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
601
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
602
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
603
- SOFTWARE.
604
-
605
-
606
- is-string
607
- MIT
608
- The MIT License (MIT)
609
-
610
- Copyright (c) 2015 Jordan Harband
611
-
612
- Permission is hereby granted, free of charge, to any person obtaining a copy
613
- of this software and associated documentation files (the "Software"), to deal
614
- in the Software without restriction, including without limitation the rights
615
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
616
- copies of the Software, and to permit persons to whom the Software is
617
- furnished to do so, subject to the following conditions:
618
-
619
- The above copyright notice and this permission notice shall be included in all
620
- copies or substantial portions of the Software.
621
-
622
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
623
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
624
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
625
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
626
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
627
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
628
- SOFTWARE.
629
-
630
-
631
-
632
- is-symbol
633
- MIT
634
- The MIT License (MIT)
635
-
636
- Copyright (c) 2015 Jordan Harband
637
-
638
- Permission is hereby granted, free of charge, to any person obtaining a copy
639
- of this software and associated documentation files (the "Software"), to deal
640
- in the Software without restriction, including without limitation the rights
641
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
642
- copies of the Software, and to permit persons to whom the Software is
643
- furnished to do so, subject to the following conditions:
644
-
645
- The above copyright notice and this permission notice shall be included in all
646
- copies or substantial portions of the Software.
647
-
648
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
649
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
650
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
651
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
652
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
653
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
654
- SOFTWARE.
655
-
656
-
657
-
658
- is-typed-array
659
- MIT
660
- The MIT License (MIT)
661
-
662
- Copyright (c) 2015 Jordan Harband
663
-
664
- Permission is hereby granted, free of charge, to any person obtaining a copy
665
- of this software and associated documentation files (the "Software"), to deal
666
- in the Software without restriction, including without limitation the rights
667
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
668
- copies of the Software, and to permit persons to whom the Software is
669
- furnished to do so, subject to the following conditions:
670
-
671
- The above copyright notice and this permission notice shall be included in all
672
- copies or substantial portions of the Software.
673
-
674
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
675
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
676
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
677
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
678
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
679
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
680
- SOFTWARE.
681
-
682
-
683
-
684
- is-weakmap
685
- MIT
686
- MIT License
687
-
688
- Copyright (c) 2019 Inspect JS
689
-
690
- Permission is hereby granted, free of charge, to any person obtaining a copy
691
- of this software and associated documentation files (the "Software"), to deal
692
- in the Software without restriction, including without limitation the rights
693
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
694
- copies of the Software, and to permit persons to whom the Software is
695
- furnished to do so, subject to the following conditions:
696
-
697
- The above copyright notice and this permission notice shall be included in all
698
- copies or substantial portions of the Software.
699
-
700
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
701
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
702
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
703
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
704
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
705
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
706
- SOFTWARE.
707
-
708
-
709
- is-weakset
710
- MIT
711
- MIT License
712
-
713
- Copyright (c) 2019 Inspect JS
714
-
715
- Permission is hereby granted, free of charge, to any person obtaining a copy
716
- of this software and associated documentation files (the "Software"), to deal
717
- in the Software without restriction, including without limitation the rights
718
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
719
- copies of the Software, and to permit persons to whom the Software is
720
- furnished to do so, subject to the following conditions:
721
-
722
- The above copyright notice and this permission notice shall be included in all
723
- copies or substantial portions of the Software.
724
-
725
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
726
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
727
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
728
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
729
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
730
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
731
- SOFTWARE.
732
-
733
-
734
- isarray
735
- MIT
736
- MIT License
737
-
738
- Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
739
-
740
- Permission is hereby granted, free of charge, to any person obtaining a copy
741
- of this software and associated documentation files (the "Software"), to deal
742
- in the Software without restriction, including without limitation the rights
743
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
744
- copies of the Software, and to permit persons to whom the Software is
745
- furnished to do so, subject to the following conditions:
746
-
747
- The above copyright notice and this permission notice shall be included in all
748
- copies or substantial portions of the Software.
749
-
750
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
751
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
752
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
753
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
754
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
755
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
756
- SOFTWARE.
757
-
758
-
759
- object-inspect
760
- MIT
761
- MIT License
762
-
763
- Copyright (c) 2013 James Halliday
764
-
765
- Permission is hereby granted, free of charge, to any person obtaining a copy
766
- of this software and associated documentation files (the "Software"), to deal
767
- in the Software without restriction, including without limitation the rights
768
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
769
- copies of the Software, and to permit persons to whom the Software is
770
- furnished to do so, subject to the following conditions:
771
-
772
- The above copyright notice and this permission notice shall be included in all
773
- copies or substantial portions of the Software.
774
-
775
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
776
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
777
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
778
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
779
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
780
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
781
- SOFTWARE.
782
-
783
-
784
- object-is
785
- MIT
786
- The MIT License (MIT)
787
-
788
- Copyright (c) 2014 Jordan Harband
789
-
790
- Permission is hereby granted, free of charge, to any person obtaining a copy of
791
- this software and associated documentation files (the "Software"), to deal in
792
- the Software without restriction, including without limitation the rights to
793
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
794
- the Software, and to permit persons to whom the Software is furnished to do so,
795
- subject to the following conditions:
796
-
797
- The above copyright notice and this permission notice shall be included in all
798
- copies or substantial portions of the Software.
799
-
800
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
801
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
802
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
803
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
804
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
805
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
806
-
807
-
808
- object-keys
809
- MIT
810
- The MIT License (MIT)
811
-
812
- Copyright (C) 2013 Jordan Harband
813
-
814
- Permission is hereby granted, free of charge, to any person obtaining a copy
815
- of this software and associated documentation files (the "Software"), to deal
816
- in the Software without restriction, including without limitation the rights
817
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
818
- copies of the Software, and to permit persons to whom the Software is
819
- furnished to do so, subject to the following conditions:
820
-
821
- The above copyright notice and this permission notice shall be included in
822
- all copies or substantial portions of the Software.
823
-
824
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
825
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
826
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
827
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
828
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
829
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
830
- THE SOFTWARE.
831
-
832
- object.assign
833
- MIT
834
- The MIT License (MIT)
835
-
836
- Copyright (c) 2014 Jordan Harband
837
-
838
- Permission is hereby granted, free of charge, to any person obtaining a copy
839
- of this software and associated documentation files (the "Software"), to deal
840
- in the Software without restriction, including without limitation the rights
841
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
842
- copies of the Software, and to permit persons to whom the Software is
843
- furnished to do so, subject to the following conditions:
844
-
845
- The above copyright notice and this permission notice shall be included in all
846
- copies or substantial portions of the Software.
847
-
848
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
849
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
850
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
851
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
852
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
853
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
854
- SOFTWARE.
855
-
856
- regexp.prototype.flags
857
- MIT
858
- The MIT License (MIT)
859
-
860
- Copyright (C) 2014 Jordan Harband
861
-
862
- Permission is hereby granted, free of charge, to any person obtaining a copy
863
- of this software and associated documentation files (the "Software"), to deal
864
- in the Software without restriction, including without limitation the rights
865
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
866
- copies of the Software, and to permit persons to whom the Software is
867
- furnished to do so, subject to the following conditions:
868
-
869
- The above copyright notice and this permission notice shall be included in
870
- all copies or substantial portions of the Software.
871
-
872
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
873
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
874
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
875
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
876
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
877
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
878
- THE SOFTWARE.
879
-
880
-
881
-
882
- side-channel
883
- MIT
884
- MIT License
885
-
886
- Copyright (c) 2019 Jordan Harband
887
-
888
- Permission is hereby granted, free of charge, to any person obtaining a copy
889
- of this software and associated documentation files (the "Software"), to deal
890
- in the Software without restriction, including without limitation the rights
891
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
892
- copies of the Software, and to permit persons to whom the Software is
893
- furnished to do so, subject to the following conditions:
894
-
895
- The above copyright notice and this permission notice shall be included in all
896
- copies or substantial portions of the Software.
897
-
898
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
899
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
900
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
901
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
902
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
903
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
904
- SOFTWARE.
905
-
906
-
907
- uuid
908
- MIT
909
- The MIT License (MIT)
910
-
911
- Copyright (c) 2010-2020 Robert Kieffer and other contributors
912
-
913
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
914
-
915
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
916
-
917
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
918
-
919
-
920
- which-boxed-primitive
921
- MIT
922
- MIT License
923
-
924
- Copyright (c) 2019 Jordan Harband
925
-
926
- Permission is hereby granted, free of charge, to any person obtaining a copy
927
- of this software and associated documentation files (the "Software"), to deal
928
- in the Software without restriction, including without limitation the rights
929
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
930
- copies of the Software, and to permit persons to whom the Software is
931
- furnished to do so, subject to the following conditions:
932
-
933
- The above copyright notice and this permission notice shall be included in all
934
- copies or substantial portions of the Software.
935
-
936
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
937
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
938
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
939
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
940
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
941
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
942
- SOFTWARE.
943
-
944
-
945
- which-collection
946
- MIT
947
- MIT License
948
-
949
- Copyright (c) 2019 Inspect JS
950
-
951
- Permission is hereby granted, free of charge, to any person obtaining a copy
952
- of this software and associated documentation files (the "Software"), to deal
953
- in the Software without restriction, including without limitation the rights
954
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
955
- copies of the Software, and to permit persons to whom the Software is
956
- furnished to do so, subject to the following conditions:
957
-
958
- The above copyright notice and this permission notice shall be included in all
959
- copies or substantial portions of the Software.
960
-
961
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
962
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
963
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
964
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
965
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
966
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
967
- SOFTWARE.
968
-
969
-
970
- which-typed-array
971
- MIT
972
- The MIT License (MIT)
973
-
974
- Copyright (c) 2015 Jordan Harband
975
-
976
- Permission is hereby granted, free of charge, to any person obtaining a copy
977
- of this software and associated documentation files (the "Software"), to deal
978
- in the Software without restriction, including without limitation the rights
979
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
980
- copies of the Software, and to permit persons to whom the Software is
981
- furnished to do so, subject to the following conditions:
982
-
983
- The above copyright notice and this permission notice shall be included in all
984
- copies or substantial portions of the Software.
985
-
986
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
987
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
988
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
989
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
990
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
991
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
992
- SOFTWARE.