-
-
Notifications
You must be signed in to change notification settings - Fork 804
/
Copy pathcli_commands.json
956 lines (956 loc) · 23.6 KB
/
cli_commands.json
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
[
{
"command": "help [command]",
"description": "Print a help message.",
"path": "",
"group": "general"
},
{
"command": "arch",
"description": "Operating system CPU architecture.",
"path": "@stdlib/os/arch",
"group": "system"
},
{
"command": "bench",
"description": "Run JavaScript benchmark files.",
"path": "@stdlib/bench",
"group": "benchmarking"
},
{
"command": "bundle-pkg-list",
"description": "Bundle a list of stdlib packages.",
"path": "@stdlib/_tools/bundle/pkg-list",
"group": "tools"
},
{
"command": "capitalize",
"description": "Capitalize the first character in a string.",
"path": "@stdlib/string/capitalize",
"group": "utilities"
},
{
"command": "configdir",
"description": "Configuration directory path.",
"path": "@stdlib/os/configdir",
"group": "system"
},
{
"command": "convert-path",
"description": "Convert between Windows and POSIX paths.",
"path": "@stdlib/utils/convert-path",
"group": "utilities"
},
{
"command": "cwd",
"description": "Current working directory.",
"path": "@stdlib/process/cwd",
"group": "system"
},
{
"command": "datasets",
"description": "Retrieve a dataset.",
"path": "@stdlib/datasets",
"group": "general"
},
{
"command": "day-of-quarter",
"description": "Calculate day of quarter.",
"path": "@stdlib/time/day-of-quarter",
"group": "time"
},
{
"command": "day-of-year",
"description": "Calculate day of year.",
"path": "@stdlib/time/day-of-year",
"group": "time"
},
{
"command": "days-in-month",
"description": "Calculate the number of days in a month.",
"path": "@stdlib/time/days-in-month",
"group": "time"
},
{
"command": "days-in-year",
"description": "Calculate the number of days in a year.",
"path": "@stdlib/time/days-in-year",
"group": "time"
},
{
"command": "ends-with",
"description": "Test if a string ends with another string.",
"path": "@stdlib/string/ends-with",
"group": "utilities"
},
{
"command": "exists",
"description": "Test if a file exists.",
"path": "@stdlib/fs/exists",
"group": "filesystem"
},
{
"command": "from-code-point",
"description": "Create a string from code points.",
"path": "@stdlib/string/from-code-point",
"group": "utilities"
},
{
"command": "has-arraybuffer-support",
"description": "Detect ArrayBuffer support.",
"path": "@stdlib/assert/has-arraybuffer-support",
"group": "assert"
},
{
"command": "has-async-await-support",
"description": "Detect async/await support.",
"path": "@stdlib/assert/has-async-await-support",
"group": "assert"
},
{
"command": "has-async-iterator-symbol-support",
"description": "Detect Symbol.asyncIterator support.",
"path": "@stdlib/assert/has-async-iterator-symbol-support",
"group": "assert"
},
{
"command": "has-class-support",
"description": "Detect ES6 class support.",
"path": "@stdlib/assert/has-class-support",
"group": "assert"
},
{
"command": "has-float32array-support",
"description": "Detect Float32Array support.",
"path": "@stdlib/assert/has-float32array-support",
"group": "assert"
},
{
"command": "has-float64array-support",
"description": "Detect Float64Array support.",
"path": "@stdlib/assert/has-float64array-support",
"group": "assert"
},
{
"command": "has-function-name-support",
"description": "Detect function name support.",
"path": "@stdlib/assert/has-function-name-support",
"group": "assert"
},
{
"command": "has-generator-support",
"description": "Detect generator support.",
"path": "@stdlib/assert/has-generator-support",
"group": "assert"
},
{
"command": "has-int16array-support",
"description": "Detect Int16Array support.",
"path": "@stdlib/assert/has-int16array-support",
"group": "assert"
},
{
"command": "has-int32array-support",
"description": "Detect Int32Array support.",
"path": "@stdlib/assert/has-int32array-support",
"group": "assert"
},
{
"command": "has-int8array-support",
"description": "Detect Int8Array support.",
"path": "@stdlib/assert/has-int8array-support",
"group": "assert"
},
{
"command": "has-iterator-symbol-support",
"description": "Detect Symbol.iterator support.",
"path": "@stdlib/assert/has-iterator-symbol-support",
"group": "assert"
},
{
"command": "has-map-support",
"description": "Detect Map support.",
"path": "@stdlib/assert/has-map-support",
"group": "assert"
},
{
"command": "has-node-buffer-support",
"description": "Detect Node buffer support.",
"path": "@stdlib/assert/has-node-buffer-support",
"group": "assert"
},
{
"command": "has-proxy-support",
"description": "Detect Proxy support.",
"path": "@stdlib/assert/has-proxy-support",
"group": "assert"
},
{
"command": "has-set-support",
"description": "Detect Set support.",
"path": "@stdlib/assert/has-set-support",
"group": "assert"
},
{
"command": "has-sharedarraybuffer-support",
"description": "Detect SharedArrayBuffer support.",
"path": "@stdlib/assert/has-sharedarraybuffer-support",
"group": "assert"
},
{
"command": "has-symbol-support",
"description": "Detect Symbol support.",
"path": "@stdlib/assert/has-symbol-support",
"group": "assert"
},
{
"command": "has-tostringtag-support",
"description": "Detect Symbol.toStringTag support.",
"path": "@stdlib/assert/has-tostringtag-support",
"group": "assert"
},
{
"command": "has-uint16array-support",
"description": "Detect Uit16Array support.",
"path": "@stdlib/assert/has-uint16array-support",
"group": "assert"
},
{
"command": "has-uint32array-support",
"description": "Detect Uit32Array support.",
"path": "@stdlib/assert/has-uint32array-support",
"group": "assert"
},
{
"command": "has-uint8array-support",
"description": "Detect Uit8Array support.",
"path": "@stdlib/assert/has-uint8array-support",
"group": "assert"
},
{
"command": "has-uint8clampedarray-support",
"description": "Detect Uit8ClampedArray support.",
"path": "@stdlib/assert/has-uint8clampedarray-support",
"group": "assert"
},
{
"command": "has-wasm-support",
"description": "Detect WebAssembly support.",
"path": "@stdlib/assert/has-wasm-support",
"group": "assert"
},
{
"command": "has-weakmap-support",
"description": "Detect WeakMap support.",
"path": "@stdlib/assert/has-weakmap-support",
"group": "assert"
},
{
"command": "has-weakset-support",
"description": "Detect WeakSet support.",
"path": "@stdlib/assert/has-weakset-support",
"group": "assert"
},
{
"command": "homedir",
"description": "Home directory path.",
"path": "@stdlib/os/homedir",
"group": "system"
},
{
"command": "hours-in-month",
"description": "Calculate the number of hours in a month.",
"path": "@stdlib/time/hours-in-month",
"group": "time"
},
{
"command": "hours-in-year",
"description": "Calculate the number of hours in a year.",
"path": "@stdlib/time/hours-in-year",
"group": "time"
},
{
"command": "iso-weeks-in-year",
"description": "Calculate the number of ISO weeks in a year.",
"path": "@stdlib/time/iso-weeks-in-year",
"group": "time"
},
{
"command": "is-absolute-path",
"description": "Assert an absolute path.",
"path": "@stdlib/assert/is-absolute-path",
"group": "assert"
},
{
"command": "is-alphagram",
"description": "Assert if a value is an alphagram.",
"path": "@stdlib/assert/is-alphagram",
"group": "assert"
},
{
"command": "is-alphanumeric",
"description": "Assert if a value is alphanumeric.",
"path": "@stdlib/assert/is-alphanumeric",
"group": "assert"
},
{
"command": "is-anagram",
"description": "Assert if a value is an anagram.",
"path": "@stdlib/assert/is-anagram",
"group": "assert"
},
{
"command": "is-ascii",
"description": "Assert if a value is ASCII.",
"path": "@stdlib/assert/is-ascii",
"group": "assert"
},
{
"command": "is-binary-string",
"description": "Assert if a value is a binary string.",
"path": "@stdlib/assert/is-binary-string",
"group": "assert"
},
{
"command": "is-capitalized",
"description": "Assert if a value is capitalized.",
"path": "@stdlib/assert/is-capitalized",
"group": "assert"
},
{
"command": "is-digit-string",
"description": "Assert if a value is a digit string.",
"path": "@stdlib/assert/is-digit-string",
"group": "assert"
},
{
"command": "is-email-address",
"description": "Assert if a value is an email address.",
"path": "@stdlib/assert/is-email-address",
"group": "assert"
},
{
"command": "is-hex-string",
"description": "Assert if a value is a hexadecimal string.",
"path": "@stdlib/assert/is-hex-string",
"group": "assert"
},
{
"command": "is-leap-year",
"description": "Assert if a leap year.",
"path": "@stdlib/assert/is-leap-year",
"group": "assert"
},
{
"command": "is-little-endian",
"description": "Assert if little endian.",
"path": "@stdlib/assert/is-little-endian",
"group": "assert"
},
{
"command": "is-lowercase",
"description": "Assert if a value is lowercase.",
"path": "@stdlib/assert/is-lowercase",
"group": "assert"
},
{
"command": "is-regexp-string",
"description": "Assert if a value is a regexp string.",
"path": "@stdlib/assert/is-regexp-string",
"group": "assert"
},
{
"command": "is-unc-path",
"description": "Assert a UNC path.",
"path": "@stdlib/assert/is-unc-path",
"group": "assert"
},
{
"command": "is-uppercase",
"description": "Assert if a value is uppercase.",
"path": "@stdlib/assert/is-uppercase",
"group": "assert"
},
{
"command": "is-uri",
"description": "Assert if a value is a URI.",
"path": "@stdlib/assert/is-uri",
"group": "assert"
},
{
"command": "is-whitespace",
"description": "Assert if a value is only whitespace.",
"path": "@stdlib/assert/is-whitespace",
"group": "assert"
},
{
"command": "js-eval",
"description": "Evaluate a JavaScript string.",
"path": "@stdlib/utils/eval",
"group": "utilities"
},
{
"command": "library-manifest",
"description": "Load a manifest for compiling source files.",
"path": "@stdlib/utils/library-manifest",
"group": "meta"
},
{
"command": "lpad",
"description": "Left pad a string.",
"path": "@stdlib/string/left-pad",
"group": "utilities"
},
{
"command": "ltrim",
"description": "Left trim a string.",
"path": "@stdlib/string/left-trim",
"group": "utilities"
},
{
"command": "lowercase",
"description": "Lowercase a string.",
"path": "@stdlib/string/lowercase",
"group": "utilities"
},
{
"command": "ls",
"description": "List stdlib package names.",
"path": "@stdlib/_tools/pkgs/names",
"group": "meta"
},
{
"command": "ls-tree",
"description": "Show stdlib package tree.",
"path": "@stdlib/_tools/pkgs/tree",
"group": "meta"
},
{
"command": "minutes-in-month",
"description": "Calculate the number of minutes in a month.",
"path": "@stdlib/time/minutes-in-month",
"group": "time"
},
{
"command": "minutes-in-year",
"description": "Calculate the number of minutes in a year.",
"path": "@stdlib/time/minutes-in-year",
"group": "time"
},
{
"command": "node-version",
"description": "Node.js version.",
"path": "@stdlib/process/node-version",
"group": "meta"
},
{
"command": "now",
"description": "Number of seconds since the epoch.",
"path": "@stdlib/time/now",
"group": "time"
},
{
"command": "ns",
"description": "Print stdlib namespace.",
"path": "@stdlib/namespace",
"group": "meta"
},
{
"command": "num-cpus",
"description": "Number of CPUs.",
"path": "@stdlib/os/num-cpus",
"group": "system"
},
{
"command": "random-arcsine",
"description": "Arcsine distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/arcsine",
"group": "random"
},
{
"command": "random-bernoulli",
"description": "Bernoulli distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/bernoulli",
"group": "random"
},
{
"command": "random-beta",
"description": "Beta distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/beta",
"group": "random"
},
{
"command": "random-betaprime",
"description": "Beta prime distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/betaprime",
"group": "random"
},
{
"command": "random-box-muller",
"description": "Box-Muller pseudorandom numbers.",
"path": "@stdlib/random/streams/box-muller",
"group": "random"
},
{
"command": "random-cauchy",
"description": "Cauchy distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/cauchy",
"group": "random"
},
{
"command": "random-chi",
"description": "Chi distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/chi",
"group": "random"
},
{
"command": "random-chisquare",
"description": "Chi-square distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/chisquare",
"group": "random"
},
{
"command": "random-cosine",
"description": "Raised cosine distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/cosine",
"group": "random"
},
{
"command": "random-discrete-uniform",
"description": "Uniformly distributed pseudorandom integers.",
"path": "@stdlib/random/streams/discrete-uniform",
"group": "random"
},
{
"command": "random-erlang",
"description": "Erlang distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/erlang",
"group": "random"
},
{
"command": "random-exponential",
"description": "Exponentially distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/exponential",
"group": "random"
},
{
"command": "random-f",
"description": "F distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/f",
"group": "random"
},
{
"command": "random-gamma",
"description": "Gamma distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/gamma",
"group": "random"
},
{
"command": "random-geometric",
"description": "Geometric distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/geometric",
"group": "random"
},
{
"command": "random-gumbel",
"description": "Gumbel distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/gumbel",
"group": "random"
},
{
"command": "random-improved-ziggurat",
"description": "Improved Ziggurat pseudorandom numbers.",
"path": "@stdlib/random/streams/improved-ziggurat",
"group": "random"
},
{
"command": "random-invgamma",
"description": "Inverse gamma distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/invgamma",
"group": "random"
},
{
"command": "random-kumaraswamy",
"description": "Kumaraswamy distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/kumaraswamy",
"group": "random"
},
{
"command": "random-laplace",
"description": "Laplace distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/laplace",
"group": "random"
},
{
"command": "random-levy",
"description": "Lévy distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/levy",
"group": "random"
},
{
"command": "random-logistic",
"description": "Logistic distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/logistic",
"group": "random"
},
{
"command": "random-lognormal",
"description": "Lognormal distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/lognormal",
"group": "random"
},
{
"command": "random-minstd",
"description": "Park and Miller LCG pseudorandom numbers.",
"path": "@stdlib/random/streams/minstd",
"group": "random"
},
{
"command": "random-minstd-shuffle",
"description": "Shuffled LCG pseudorandom numbers.",
"path": "@stdlib/random/streams/minstd-shuffle",
"group": "random"
},
{
"command": "random-mt19937",
"description": "32-bit Mersenne Twister pseudorandom numbers.",
"path": "@stdlib/random/streams/mt19937",
"group": "random"
},
{
"command": "random-normal",
"description": "Normally distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/normal",
"group": "random"
},
{
"command": "random-pareto-type1",
"description": "Pareto (type 1) distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/pareto-type1",
"group": "random"
},
{
"command": "random-poisson",
"description": "Poisson distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/poisson",
"group": "random"
},
{
"command": "random-randi",
"description": "Pseudorandom numbers having integer values.",
"path": "@stdlib/random/streams/randi",
"group": "random"
},
{
"command": "random-randn",
"description": "Normally distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/randn",
"group": "random"
},
{
"command": "random-randu",
"description": "Pseudorandom numbers between 0 and 1.",
"path": "@stdlib/random/streams/randu",
"group": "random"
},
{
"command": "random-Rayleigh",
"description": "Rayleigh distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/rayleigh",
"group": "random"
},
{
"command": "random-t",
"description": "Student's t distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/t",
"group": "random"
},
{
"command": "random-uniform",
"description": "Uniformly distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/uniform",
"group": "random"
},
{
"command": "random-weibull",
"description": "Weibull distributed pseudorandom numbers.",
"path": "@stdlib/random/streams/weibull",
"group": "random"
},
{
"command": "open-url",
"description": "Open a URL.",
"path": "@stdlib/utils/open-url",
"group": "utilities"
},
{
"command": "padstr",
"description": "Pad a string.",
"path": "@stdlib/string/pad",
"group": "utilities"
},
{
"command": "parallel",
"description": "Execute scripts in parallel.",
"path": "@stdlib/utils/parallel",
"group": "utilities"
},
{
"command": "percent-encode",
"description": "Percent-encode a UTF-16 encoded string.",
"path": "@stdlib/string/percent-encode",
"group": "utilities"
},
{
"command": "platform",
"description": "Platform.",
"path": "@stdlib/os/platform",
"group": "system"
},
{
"command": "quarter-of-year",
"description": "Calculate the quarter of a year.",
"path": "@stdlib/time/quarter-of-year",
"group": "time"
},
{
"command": "read-dir",
"description": "Read all files in a directory.",
"path": "@stdlib/fs/read-dir",
"group": "filesystem"
},
{
"command": "read-file",
"description": "Read a file.",
"path": "@stdlib/fs/read-file",
"group": "filesystem"
},
{
"command": "read-file-list",
"description": "Read a list of files.",
"path": "@stdlib/fs/read-file-list",
"group": "filesystem"
},
{
"command": "realmax",
"description": "Maximum representable finite value.",
"path": "@stdlib/utils/real-max",
"group": "utilities"
},
{
"command": "realmin",
"description": "Minimum representable finite value.",
"path": "@stdlib/utils/real-min",
"group": "utilities"
},
{
"command": "remove-first",
"description": "Remove the first character in a string.",
"path": "@stdlib/string/remove-first",
"group": "utilities"
},
{
"command": "remove-last",
"description": "Remove the last character in a string.",
"path": "@stdlib/string/remove-last",
"group": "utilities"
},
{
"command": "remove-punctuation",
"description": "Remove punctuation characters from a string.",
"path": "@stdlib/string/remove-punctuation",
"group": "utilities"
},
{
"command": "remove-utf8-bom",
"description": "Remove a UTF-8 byte order mark (BOM).",
"path": "@stdlib/string/remove-first",
"group": "utilities"
},
{
"command": "remove-words",
"description": "Remove a list of words from a string.",
"path": "@stdlib/string/remove-words",
"group": "utilities"
},
{
"command": "rename",
"description": "Rename a file.",
"path": "@stdlib/fs/rename",
"group": "filesystem"
},
{
"command": "repstr",
"description": "Repeat a string.",
"path": "@stdlib/string/repeat",
"group": "utilities"
},
{
"command": "repl",
"description": "Start a REPL.",
"path": "@stdlib/repl",
"group": "general"
},
{
"command": "repl-presentation",
"description": "Start a REPL presentation.",
"path": "@stdlib/repl/presentation",
"group": "general"
},
{
"command": "replace",
"description": "Replace search occurrences in a string.",
"path": "@stdlib/string/replace",
"group": "utilities"
},
{
"command": "resolve-parent-path",
"description": "Resolve a path by walking parent directories.",
"path": "@stdlib/fs/resolve-parent-path",
"group": "filesystem"
},
{
"command": "reverse",
"description": "Reverse a string.",
"path": "@stdlib/string/reverse",
"group": "utilities"
},
{
"command": "rpad",
"description": "Right pad a string.",
"path": "@stdlib/string/right-pad",
"group": "utilities"
},
{
"command": "rtrim",
"description": "Right trim a string.",
"path": "@stdlib/string/right-trim",
"group": "utilities"
},
{
"command": "safeintmax",
"description": "Maximum representable safe integer value.",
"path": "@stdlib/utils/safe-int-max",
"group": "utilities"
},
{
"command": "safeintmin",
"description": "Minimum representable safe integer value.",
"path": "@stdlib/utils/safe-int-min",
"group": "utilities"
},
{
"command": "seconds-in-month",
"description": "Calculate the number of seconds in a month.",
"path": "@stdlib/time/seconds-in-month",
"group": "time"
},
{
"command": "seconds-in-year",
"description": "Calculate the number of seconds in a year.",
"path": "@stdlib/time/seconds-in-year",
"group": "time"
},
{
"command": "sizeof",
"description": "Size (in bytes) of a numeric data type.",
"path": "@stdlib/utils/size-of",
"group": "utilities"
},
{
"command": "sparkline",
"description": "Plot a sparkline.",
"path": "@stdlib/plot/sparklines/unicode",
"group": "plot"
},
{
"command": "startcase",
"description": "Capitalize each word in a string.",
"path": "@stdlib/string/startcase",
"group": "utilities"
},
{
"command": "starts-with",
"description": "Test if a string starts with another string.",
"path": "@stdlib/string/starts-with",
"group": "utilities"
},
{
"command": "temp-http-server",
"description": "Create a temporary HTTP server.",
"path": "@stdlib/net/disposable-http-server",
"group": "utilities"
},
{
"command": "timeit",
"description": "Time a JavaScript snippet.",
"path": "@stdlib/utils/timeit",
"group": "benchmarking"
},
{
"command": "tmpdir",
"description": "Directory path for storing temporary files.",
"path": "@stdlib/os/tmpdir",
"group": "system"
},
{
"command": "trim",
"description": "Trim a string.",
"path": "@stdlib/string/trim",
"group": "utilities"
},
{
"command": "typemax",
"description": "Maximum value for a numeric data type.",
"path": "@stdlib/utils/type-max",
"group": "utilities"
},
{
"command": "typemin",
"description": "Minimum value for a numeric data type.",
"path": "@stdlib/utils/type-min",
"group": "utilities"
},
{
"command": "umask",
"description": "Process mask.",
"path": "@stdlib/process/umask",
"group": "system"
},
{
"command": "uncapitalize",
"description": "Uncapitalize a string.",
"path": "@stdlib/string/uncapitalize",
"group": "utilities"
},
{
"command": "unlink",
"description": "Remove a file.",
"path": "@stdlib/fs/unlink",
"group": "filesystem"
},
{
"command": "uppercase",
"description": "Uppercase a string.",
"path": "@stdlib/string/uppercase",
"group": "utilities"
},
{
"command": "write-file",
"description": "Write to file.",
"path": "@stdlib/fs/write-file",
"group": "filesystem"
},
{
"command": "constant-stream",
"description": "Stream a constant value.",
"path": "@stdlib/streams/node/from-constant",
"group": "utilities"
},
{
"command": "empty-stream",
"description": "Empty stream.",
"path": "@stdlib/streams/node/empty",
"group": "utilities"
}
]