Skip to content

Files

Latest commit

8696241 · Jan 14, 2024

History

History

namespace

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 14, 2024
Jan 14, 2024
Jan 14, 2024
Jan 14, 2024
Feb 2, 2018
Jul 9, 2021
Aug 20, 2023
Jul 9, 2021
Feb 2, 2018
Jan 14, 2024
Jan 14, 2024
Jan 14, 2024
Jan 14, 2024
Jan 14, 2024
Oct 22, 2021
Sep 5, 2021
Nov 16, 2022

Namespace

Standard library namespace.

Usage

var namespace = require( '@stdlib/namespace' );

namespace()

Returns the standard library namespace.

var ns = namespace();
// returns [ {...}, {...}, ... ]

Examples

var namespace = require( '@stdlib/namespace' );

var ns = namespace();
// returns [ {...}, {...}, ... ]

CLI

Usage

Usage: stdlib-namespace [options]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.
         --fields f1,f2,...    Print fields as CSV.

Notes

  • The default output format is newline-delimited JSON (NDJSON). Each printed object will contain the following fields: alias, path, type, and related. If a namespace element's value can be serialized as JSON, the object will contain the element value. Otherwise, the value field will be missing.
  • To output data as comma-separated values (CSV), specify the desired fields. Supported fields include: alias, path, type, and related. The first line is a header line, and all values are enclosed in double quotes "...".

Examples

$ stdlib-namespace
{...}
{...}
{...}
...

To output data as CSV,

$ stdlib-namespace --fields alias,type
"alias","type"
"AFINN_111","Function"
"AFINN_96","Function"
"any","Function"
"anyBy","Function"
...