|
35 | 35 | "path": "@stdlib/os/configdir", |
36 | 36 | "group": "system" |
37 | 37 | }, |
| 38 | + { |
| 39 | + "command": "convert-path", |
| 40 | + "description": "Convert between Windows and POSIX paths.", |
| 41 | + "path": "@stdlib/utils/convert-path", |
| 42 | + "group": "utilities" |
| 43 | + }, |
38 | 44 | { |
39 | 45 | "command": "cwd", |
40 | 46 | "description": "Current working directory.", |
|
365 | 371 | "path": "@stdlib/assert/is-whitespace", |
366 | 372 | "group": "assert" |
367 | 373 | }, |
| 374 | + { |
| 375 | + "command": "js-eval", |
| 376 | + "description": "Evaluate a JavaScript string.", |
| 377 | + "path": "@stdlib/utils/js-eval", |
| 378 | + "group": "utilities" |
| 379 | + }, |
| 380 | + { |
| 381 | + "command": "library-manifest", |
| 382 | + "description": "Load a manifest for compiling source files.", |
| 383 | + "path": "@stdlib/tools/library-manifest", |
| 384 | + "group": "meta" |
| 385 | + }, |
368 | 386 | { |
369 | 387 | "command": "lpad", |
370 | 388 | "description": "Left pad a string.", |
|
431 | 449 | "path": "@stdlib/os/num-cpus", |
432 | 450 | "group": "system" |
433 | 451 | }, |
| 452 | + { |
| 453 | + "command": "open-url", |
| 454 | + "description": "Open a URL.", |
| 455 | + "path": "@stdlib/utils/open-url", |
| 456 | + "group": "utilities" |
| 457 | + }, |
434 | 458 | { |
435 | 459 | "command": "padstr", |
436 | 460 | "description": "Pad a string.", |
437 | 461 | "path": "@stdlib/string/pad", |
438 | 462 | "group": "utilities" |
439 | 463 | }, |
| 464 | + { |
| 465 | + "command": "parallel", |
| 466 | + "description": "Execute scripts in parallel.", |
| 467 | + "path": "@stdlib/utils/parallel", |
| 468 | + "group": "utilities" |
| 469 | + }, |
440 | 470 | { |
441 | 471 | "command": "percent-encode", |
442 | 472 | "description": "Percent-encode a UTF-16 encoded string.", |
|
473 | 503 | "path": "@stdlib/fs/read-file-list", |
474 | 504 | "group": "filesystem" |
475 | 505 | }, |
| 506 | + { |
| 507 | + "command": "realmax", |
| 508 | + "description": "Maximum representable finite value.", |
| 509 | + "path": "@stdlib/utils/real-max", |
| 510 | + "group": "utilities" |
| 511 | + }, |
| 512 | + { |
| 513 | + "command": "realmin", |
| 514 | + "description": "Minimum representable finite value.", |
| 515 | + "path": "@stdlib/utils/real-min", |
| 516 | + "group": "utilities" |
| 517 | + }, |
476 | 518 | { |
477 | 519 | "command": "remove-first", |
478 | 520 | "description": "Remove the first character in a string.", |
|
551 | 593 | "path": "@stdlib/string/right-trim", |
552 | 594 | "group": "utilities" |
553 | 595 | }, |
| 596 | + { |
| 597 | + "command": "safeintmax", |
| 598 | + "description": "Maximum representable safe integer value.", |
| 599 | + "path": "@stdlib/utils/safe-int-max", |
| 600 | + "group": "utilities" |
| 601 | + }, |
| 602 | + { |
| 603 | + "command": "safeintmin", |
| 604 | + "description": "Minimum representable safe integer value.", |
| 605 | + "path": "@stdlib/utils/safe-int-min", |
| 606 | + "group": "utilities" |
| 607 | + }, |
554 | 608 | { |
555 | 609 | "command": "seconds-in-month", |
556 | 610 | "description": "Calculate the number of seconds in a month.", |
|
563 | 617 | "path": "@stdlib/time/seconds-in-year", |
564 | 618 | "group": "time" |
565 | 619 | }, |
| 620 | + { |
| 621 | + "command": "sizeof", |
| 622 | + "description": "Size (in bytes) of a numeric data type.", |
| 623 | + "path": "@stdlib/utils/size-of", |
| 624 | + "group": "utilities" |
| 625 | + }, |
566 | 626 | { |
567 | 627 | "command": "sparkline", |
568 | 628 | "description": "Plot a sparkline.", |
|
581 | 641 | "path": "@stdlib/string/starts-with", |
582 | 642 | "group": "utilities" |
583 | 643 | }, |
| 644 | + { |
| 645 | + "command": "temp-http-server", |
| 646 | + "description": "Create a temporary HTTP server.", |
| 647 | + "path": "@stdlib/tools/disposable-http-server", |
| 648 | + "group": "utilities" |
| 649 | + }, |
| 650 | + { |
| 651 | + "command": "timeit", |
| 652 | + "description": "Time a JavaScript snippet.", |
| 653 | + "path": "@stdlib/utils/timeit", |
| 654 | + "group": "benchmarking" |
| 655 | + }, |
584 | 656 | { |
585 | 657 | "command": "tmpdir", |
586 | 658 | "description": "Directory path for storing temporary files.", |
|
593 | 665 | "path": "@stdlib/string/trim", |
594 | 666 | "group": "utilities" |
595 | 667 | }, |
| 668 | + { |
| 669 | + "command": "typemax", |
| 670 | + "description": "Maximum value for a numeric data type.", |
| 671 | + "path": "@stdlib/utils/type-max", |
| 672 | + "group": "utilities" |
| 673 | + }, |
| 674 | + { |
| 675 | + "command": "typemin", |
| 676 | + "description": "Minimum value for a numeric data type.", |
| 677 | + "path": "@stdlib/utils/type-min", |
| 678 | + "group": "utilities" |
| 679 | + }, |
596 | 680 | { |
597 | 681 | "command": "umask", |
598 | 682 | "description": "Process mask.", |
|
0 commit comments