forked from stdlib-js/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.json
More file actions
4366 lines (4366 loc) · 113 KB
/
database.json
File metadata and controls
4366 lines (4366 loc) · 113 KB
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
{
"http://blog.izs.me/post/59142742143/designing-apis-for-asynchrony": {
"id": "zalgo",
"description": "Blog post by Isaac Z. Schlueter on designing asynchronous APIs and releasing Zalgo.",
"short_url": "",
"keywords": [
"asynchronous",
"node.js"
]
},
"http://creativecommons.org/licenses/by/4.0/": {
"id": "cc-by-4.0",
"description": "Creative Commons Attribution 4.0 International (CC BY 4.0) license.",
"short_url": "",
"keywords": [
"creativecommons",
"copyleft",
"copyright",
"licensing",
"license",
"law",
"freecontent"
]
},
"http://davidcel.is/posts/stop-validating-email-addresses-with-regex/": {
"id": "validate-email-address",
"description": "Blog entry by David Celis arguing that one should not try to validate email addresses via regular expressions.",
"short_url": "",
"keywords": [
"regexp",
"email",
"validation"
]
},
"http://ecma-international.org/ecma-262/5.1/#sec-9.12": {
"id": "ecma-262-same-value-algorithm",
"description": "ECMAScript 5 specification of the SameValue algorithm.",
"short_url": "",
"keywords": [
"equal",
"same",
"ecmascript",
"javascript"
]
},
"http://editorconfig.org/": {
"id": "editorconfig",
"description": "EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. Official website.",
"short_url": "",
"keywords": [
"configuration",
"editor",
"ide"
]
},
"http://en.wikipedia.org/wiki/Anagram": {
"id": "anagram",
"description": "Wikipedia entry for anagrams.",
"short_url": "",
"keywords": [
"alphabetical",
"anagram",
"words",
"letters"
]
},
"http://en.wikipedia.org/wiki/Diacritic": {
"id": "diacritics",
"description": "Wikipedia entry on diacritics.",
"short_url": "",
"keywords": [
"typography",
"punctuation",
"diacritics",
"glyph"
]
},
"http://en.wikipedia.org/wiki/Endianness": {
"id": "endianness",
"description": "Wikipedia entry for endianness, which governs how a range of bytes in computer memory is interpreted.",
"short_url": "",
"keywords": [
"bigendian",
"littleendian",
"memory",
"computer",
"bytes",
"bit"
]
},
"http://en.wikipedia.org/wiki/Pythagorean_theorem": {
"id": "hypotenuse",
"description": "Wikipedia entry on the Pythagorean theorem and the hypotenuse of a triangle.",
"short_url": "",
"keywords": [
"area",
"angle",
"pythagoras",
"triangle",
"theorem",
"hypotenuse"
]
},
"http://en.wikipedia.org/wiki/URI_scheme": {
"id": "uri",
"description": "Wikipedia entry on Uniform Resource Identifiers (URIs) to identify resources in a network.",
"short_url": "",
"keywords": [
"internet",
"web",
"uri",
"standard",
"identifier",
"protocol"
]
},
"http://eslint.org/": {
"id": "eslint",
"description": "A pluggable linting utility for JavaScript. Official website.",
"short_url": "",
"keywords": [
"lint",
"linting",
"linter",
"javascript",
"ecmascript"
]
},
"http://jshint.com/": {
"id": "jshint",
"description": "A static code analysis tool for JavaScript.",
"short_url": "",
"keywords": [
"jshint",
"lint",
"linter",
"linting",
"javascript",
"js"
]
},
"http://jupyter.org/": {
"id": "jupyter",
"description": "Official homepage for Jupyter, an open source project whose principal offering is the Jupyter notebook, an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text.",
"short_url": "",
"keywords": [
"jupyter",
"python"
]
},
"http://man7.org/linux/man-pages/man2/chdir.2.html": {
"id": "chdir",
"description": "Documentation for the `chdir` function to change the working directory of the calling process.",
"short_url": "",
"keywords": [
"chdir",
"linux",
"man",
"dir"
]
},
"http://man7.org/linux/man-pages/man2/getegid.2.html": {
"id": "getegid",
"description": "Documentation for the function `getegid` for returning the effective group identity of the calling process.",
"short_url": "",
"keywords": [
"man",
"linux",
"group",
"identity",
"getegid",
"getgid",
"permissions"
]
},
"http://man7.org/linux/man-pages/man2/geteuid.2.html": {
"id": "geteuid",
"description": "Documentation for the function `geteuid` for returning the effective user identity of the calling process.",
"short_url": "",
"keywords": [
"man",
"linux",
"geteuid",
"getuid",
"user",
"identity"
]
},
"http://man7.org/linux/man-pages/man2/getgid.2.html": {
"id": "getgid",
"description": "Documentation for the `getgid` function for returning the group identity.",
"short_url": "",
"keywords": [
"linux",
"man",
"getgid",
"group",
"identity"
]
},
"http://man7.org/linux/man-pages/man2/getuid.2.html": {
"id": "getuid",
"description": "Documentation for the `getuid` function to retrieve a user's identity.",
"short_url": "",
"keywords": [
"linux",
"man",
"user",
"id"
]
},
"http://man7.org/linux/man-pages/man2/umask.2.html": {
"id": "umask",
"description": "Documentation for the `umask` function to set the file creation mode mask.",
"short_url": "",
"keywords": [
"linux",
"man",
"umask",
"permissions"
]
},
"http://man7.org/linux/man-pages/man7/environ.7.html": {
"id": "man-environ",
"description": "Documentation for `environ`, a variable which points to an array of pointers to strings called the \"environment\".",
"short_url": "",
"keywords": [
"man",
"environ",
"environment",
"env",
"user"
]
},
"http://nginx.org/en/docs/": {
"id": "nginx",
"description": "Official documentation for nginx, an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server.",
"short_url": "",
"keywords": [
"nginx",
"server",
"proxy"
]
},
"http://ocp.hul.harvard.edu/dl/contagion/010164675": {
"id": "@nightingale:1859a",
"description": "Library record for Florence Nightingale's polar area diagram of the sanitary history of the British army during the late war with Russia.",
"short_url": "",
"keywords": [
"visualization",
"viz",
"plot",
"chart",
"florence",
"nightingale",
"polar",
"area",
"diagram"
]
},
"http://opendatacommons.org/licenses/by/1.0/": {
"id": "odc-by-1.0",
"description": "Open Data Commons Attribution License.",
"short_url": "",
"keywords": [
"licensing",
"license",
"opendata",
"database"
]
},
"http://opendatacommons.org/licenses/pddl/1.0/": {
"id": "pddl-1.0",
"description": "Open Data Commons (ODC) Public Domain Dedication and Licence (PDDL).",
"short_url": "",
"keywords": [
"license",
"open",
"data",
"public",
"domain",
"odc",
"pddl",
"pddl-1.0"
]
},
"http://spamassassin.apache.org/old/publiccorpus/readme.html": {
"id": "spam-assassin",
"description": "SpamAssassin public mail corpus for testing spam filtering systems.",
"short_url": "",
"keywords": [
"email",
"corpus",
"spamassassin",
"classification",
"filtering"
]
},
"http://specs.frictionlessdata.io/ndjson/": {
"id": "ndjson",
"description": "Newline delimited JSON format.",
"short_url": "",
"keywords": [
"ndjson",
"ldjson",
"json",
"newline",
"stream",
"parse",
"serialize"
]
},
"http://testanything.org/tap-version-13-specification.html": {
"id": "tap",
"description": "Test Anything Protocol, a protocol for transmission of unit testing results.",
"short_url": "",
"keywords": [
"testing",
"tap",
"software",
"format",
"perl",
"cs",
"unittest"
]
},
"http://tools.ietf.org/html/rfc5988": {
"id": "rfc-5988",
"description": "An RFC describing web links.",
"short_url": "",
"keywords": [
"web links",
"linking",
"link header"
]
},
"http://usejsdoc.org/": {
"id": "jsdoc",
"description": "The official website of JSDoc.",
"short_url": "",
"keywords": [
"jsdoc",
"documentation",
"docs",
"javascript"
]
},
"http://usejsdoc.org/tags-typedef.html": {
"id": "jsdoc-typedef",
"description": "JSDoc documentation for defining custom types (type definitions).",
"short_url": "",
"keywords": [
"jsdoc",
"documentation",
"docs",
"javascript",
"types"
]
},
"http://webassembly.org/": {
"id": "webassembly",
"description": "Official website for WebAssembly, a portable compilation target for the Web.",
"short_url": "",
"keywords": [
"webassembly",
"wasm",
"asm",
"binary"
]
},
"http://wiki.commonjs.org/wiki/CommonJS": {
"id": "commonjs",
"description": "Wiki for the CommonJS specification and working group.",
"short_url": "",
"keywords": [
"commonjs",
"modules",
"javascript"
]
},
"http://wiki.commonjs.org/wiki/Packages/1.0": {
"id": "commonjs-package-format",
"description": "A specification which describes the CommonJS package format, including package.json, for distributing CommonJS programs and libraries.",
"short_url": "",
"keywords": [
"commonjs",
"package",
"package.json"
]
},
"http://www.2ality.com/2013/05/quirk-array-like-objects.html": {
"id": "array-like",
"description": "Blog post by Dr. Axel Rauschmeyer on array-like objects in JavaScript.",
"short_url": "",
"keywords": [
"array",
"arraylike",
"javascript",
"ecmascript"
]
},
"http://www.2ality.com/2015/09/function-names-es6.html": {
"id": "2ality-function-names",
"description": "Blog post by Dr. Axel Rauschmeyer on the name property of a JavaScript function.",
"short_url": "",
"keywords": [
"function",
"property",
"javascript",
"ecmascript"
]
},
"http://www.bibtex.org/": {
"id": "bibtex",
"description": "The official BibTeX website.",
"short_url": "",
"keywords": [
"latex",
"tex",
"bibtex",
"bib",
"bibliography",
"references",
"refs",
"citations",
"cite"
]
},
"http://www.ecma-international.org/ecma-262/5.1": {
"id": "ecma-262",
"description": "ECMAScript language specification.",
"short_url": "",
"keywords": [
"specification",
"javascript",
"ecmascript"
]
},
"http://www.ecma-international.org/ecma-262/5.1/#sec-12.6.4": {
"id": "ecma-262-for-in",
"description": "For-in behavior according to ECMAScript specification.",
"short_url": "",
"keywords": [
"specification",
"javascript",
"ecmascript",
"for-in",
"ecma262",
"ecma-262",
"ecma"
]
},
"http://www.fq.math.ca/Scanned/3-3/gould.pdf": {
"id": "@gould:1965a",
"description": "Gould, H.W. 1965. \"Non-Fibonacci Numbers.\" *Fibonacci Quarterly*, no. 3: 177–83.",
"short_url": "",
"keywords": [
"fibonacci",
"fibo",
"integers",
"sequences",
"number theory"
]
},
"http://www.getty.edu/about/opencontent.html": {
"id": "getty-open-content",
"description": "Getty Open Content Program.",
"short_url": "",
"keywords": [
"getty",
"images",
"publicdomain",
"opencontent",
"fairuse",
"copyright"
]
},
"http://www.json.org/": {
"id": "json",
"description": "The official JSON website.",
"short_url": "",
"keywords": [
"json"
]
},
"http://www.jstor.org/stable/747086": {
"id": "@klare:1974a",
"description": "Digital Object Identifier for Klare, George R. 1974.",
"short_url": "",
"keywords": [
"paper",
"journal",
"doi",
"school",
"readability",
"reading",
"education"
]
},
"http://www.moshier.net/#Cephes": {
"id": "cephes",
"description": "Moshier's website which provides Cephes distributions.",
"short_url": "",
"keywords": [
"cephes",
"math"
]
},
"http://www.numpy.org/": {
"id": "numpy",
"description": "Official homepage for NumPy, the fundamental package for scientific computing with Python.",
"short_url": "",
"keywords": [
"numpy",
"python"
]
},
"http://www.speech.cs.cmu.edu/cgi-bin/cmudict#about": {
"id": "cmudict",
"description": "Website for the Carnegie Mellon Pronouncing Dictionary.",
"short_url": "",
"keywords": [
"dataset",
"data",
"dictionary",
"nlp",
"speech"
]
},
"http://www.yaml.org/": {
"id": "yaml",
"description": "Human friendly data serialization standard.",
"short_url": "",
"keywords": [
"markup",
"serialization",
"configuration",
"config"
]
},
"http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=6010": {
"id": "afinn",
"description": "List of English words rated for valence with an integer between minus five (negative) and plus five (positive).",
"short_url": "",
"keywords": [
"wordlist",
"sentiment",
"textmining",
"opinion",
"english",
"language"
]
},
"https://arxiv.org/abs/1105.1127": {
"id": "@farhi:2011a",
"description": "Farhi, Bakir. 2011. \"An explicit formula generating the non-Fibonacci numbers.\" *arXiv \\[Math.NT\\]* abs/1105.1127 (May): 1-5.",
"short_url": "",
"keywords": [
"fibonacci",
"fibo",
"number theory",
"integers",
"sequences"
]
},
"https://arxiv.org/abs/1210.4539": {
"id": "@baudin:2012",
"description": "Baudin, Michael, and Robert L. Smith. 2012. \"A Robust Complex Division in Scilab\" abs/1210.4539 (October). <https://arxiv.org/abs/1210.4539>.",
"short_url": "",
"keywords": [
"floating-point",
"arithmetic",
"complex",
"division",
"algorithm"
]
},
"https://brew.sh": {
"id": "homebrew",
"description": "Package manager for MacOS.",
"short_url": "",
"keywords": [
"mac",
"os x",
"osx",
"macintosh",
"pkg",
"package manager"
]
},
"https://bugs.webkit.org/show_bug.cgi?id=7726": {
"id": "webkit-bug-7726",
"description": "Webkit bug report related to the naming of anonymous functions.",
"short_url": "",
"keywords": [
"function",
"bug",
"webkit",
"javascript",
"ecmascript"
]
},
"https://circleci.com/": {
"id": "circleci",
"description": "A continuous integration platform for Linux and MacOS.",
"short_url": "",
"keywords": [
"continuous",
"integration",
"ci",
"build",
"linux",
"macos",
"mac"
]
},
"https://codecov.io/": {
"id": "codecov",
"description": "A hosted code coverage service.",
"short_url": "",
"keywords": [
"codecov",
"coverage",
"unit testing"
]
},
"https://coveralls.io/": {
"id": "coveralls",
"description": "A hosted code coverage service.",
"short_url": "",
"keywords": [
"coveralls",
"coverage",
"unit testing"
]
},
"https://creativecommons.org/licenses/by-sa/4.0/": {
"id": "cc-by-sa-4.0",
"description": "Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.",
"short_url": "",
"keywords": [
"creativecommons",
"copyleft",
"copyright",
"licensing",
"license",
"law",
"legal",
"freecontent"
]
},
"https://creativecommons.org/publicdomain/zero/1.0": {
"id": "cc0",
"description": "Creative commons public domain dedication (CC0 1.0 Universal license).",
"short_url": "",
"keywords": [
"license",
"public",
"domain",
"cc0"
]
},
"https://danielmiessler.com/study/url-uri/": {
"id": "difference-url-uri",
"description": "Blog post on the difference between URIs and URLs.",
"short_url": "",
"keywords": [
"url",
"uri",
"identifier",
"access",
"protocol"
]
},
"https://developer.github.com/guides/traversing-with-pagination/": {
"id": "github-pagination",
"description": "GitHub documentation for pagination.",
"short_url": "",
"keywords": [
"github",
"api",
"paginate",
"pagination"
]
},
"https://developer.github.com/v3/": {
"id": "github-api",
"description": "Documentation for the GitHub API.",
"short_url": "",
"keywords": [
"github",
"api"
]
},
"https://developer.github.com/v3/#oauth2-token-sent-in-a-header": {
"id": "github-oauth2",
"description": "GitHub documentation for OAuth2 header token.",
"short_url": "",
"keywords": [
"github",
"api",
"oauth2",
"oauth",
"token",
"header"
]
},
"https://developer.github.com/v3/#user-agent-required": {
"id": "github-user-agent",
"description": "GitHub documentation for user agent header.",
"short_url": "",
"keywords": [
"github",
"api",
"useragent"
]
},
"https://developer.github.com/v3/media/": {
"id": "github-media",
"description": "GitHub documentation for media types.",
"short_url": "",
"keywords": [
"github",
"api",
"media"
]
},
"https://developer.github.com/v3/rate_limit/": {
"id": "github-rate-limit",
"description": "GitHub documentation for rate limits.",
"short_url": "",
"keywords": [
"github",
"api",
"rate limit"
]
},
"https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Generator": {
"id": "mdn-generator-object",
"description": "Mozilla Developer Network (MDN) documentation for ECMAScript 2015 generator objects.",
"short_url": "",
"keywords": [
"generator",
"object",
"javascript",
"ecmascript"
]
},
"https://developer.mozilla.org/en-US/docs/Web/API/NavigatorConcurrentHardware/hardwareConcurrency": {
"id": "hardware-concurrency",
"description": "Mozilla Developer Network (MDN) documentation for the hardware concurrency API to retrieve the number of logical processors on the computer.",
"short_url": "",
"keywords": [
"api",
"browser",
"javascript",
"ecmascript"
]
},
"https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API": {
"id": "mdn-web-workers-api",
"description": "Mozilla Developer Network (MDN) documentation on the Web Workers API.",
"short_url": "",
"keywords": [
"webworker",
"worker",
"api",
"browser",
"application",
"web"
]
},
"https://developer.mozilla.org/en-US/docs/Web/API/Window/open": {
"id": "window-open",
"description": "Mozilla Developer Network (MDN) documentation for the Window.open() function.",
"short_url": "",
"keywords": [
"browser",
"dom",
"api",
"javascript",
"ecmascript"
]
},
"https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP": {
"id": "mdn-csp",
"description": "MDN reference for content security policy (CSP).",
"short_url": "",
"keywords": [
"csp",
"content",
"security",
"policy"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions": {
"id": "mdn-regexp",
"description": "Mozilla Developer Network (MDN) documentation for regular expressions in JavaScript.",
"short_url": "",
"keywords": [
"regexp",
"regex",
"regular",
"expressions",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes": {
"id": "mdn-class",
"description": "Mozilla Developer Network (MDN) documentation for ECMAScript 2015 classes.",
"short_url": "",
"keywords": [
"class",
"javascript",
"ecmascript"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects": {
"id": "mdn-builtins",
"description": "Mozilla Developer Network (MDN) documentation on JavaScript's built-in objects as well as their methods and properties.",
"short_url": "",
"keywords": [
"object",
"globals",
"javascript",
"ecmascript"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array": {
"id": "mdn-array",
"description": "Mozilla Developer Network (MDN) documentation for the JavaScript Array object.",
"short_url": "",
"keywords": [
"globals",
"array",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/ReduceRight": {
"id": "mdn-array-reduceright",
"description": "Mozilla Developer Network (MDN) documentation for the reduceRight Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"method",
"prototype",
"reduce",
"reduceright",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/every": {
"id": "mdn-array-every",
"description": "Mozilla Developer Network (MDN) documentation for the every Array.prototype method.",
"short_url": "",
"keywords": [
"every",
"array",
"javascript",
"ecmascript"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find": {
"id": "mdn-array-find",
"description": "Mozilla Developer Network (MDN) documentation for the find Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"prototype",
"method",
"find",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach": {
"id": "mdn-array-foreach",
"description": "Mozilla Developer Network (MDN) documentation for the forEach Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"prototype",
"method",
"foreach",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map": {
"id": "mdn-array-map",
"description": "Mozilla Developer Network (MDN) documentation for the map Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"method",
"prototype",
"map",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/pop": {
"id": "mdn-array-pop",
"description": "Mozilla Developer Network (MDN) documentation for the pop Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"method",
"prototype",
"pop",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push": {
"id": "mdn-array-push",
"description": "Mozilla Developer Network (MDN) documentation for the push Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"method",
"prototype",
"push",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce": {
"id": "mdn-array-reduce",
"description": "Mozilla Developer Network (MDN) documentation for the reduce Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"method",
"prototype",
"reduce",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/shift": {
"id": "mdn-array-shift",
"description": "Mozilla Developer Network (MDN) documentation for the shift Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"method",
"prototype",
"shift",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/some": {
"id": "mdn-array-some",
"description": "Mozilla Developer Network (MDN) documentation for the some Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"prototype",
"javascript",
"ecmascript"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift": {
"id": "mdn-array-unshift",
"description": "Mozilla Developer Network (MDN) documentation for the unshift Array.prototype method.",
"short_url": "",
"keywords": [
"array",
"method",
"prototype",
"unshift",
"javascript",
"ecmascript",
"js"
]
},
"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer": {
"id": "mdn-arraybuffer",
"description": "Mozilla Developer Network (MDN) documentation for the ArrayBuffer object.",
"short_url": "",
"keywords": [
"typed-array",
"buffer",
"arraybuffer",
"javascript",