mirror of
https://github.com/nushell/nushell.git
synced 2025-04-05 17:48:28 +02:00
31 lines
836 B
Plaintext
31 lines
836 B
Plaintext
# formats.nu
|
|
#
|
|
# This file contains functions for formatting data in various ways.
|
|
#
|
|
# Usage:
|
|
# use std format *
|
|
# use std format <function name>
|
|
#
|
|
# These functions help `open` the files with unsupported extensions such as ndjson.
|
|
#
|
|
|
|
# Convert from [NDJSON](https://github.com/ndjson/ndjson-spec) to structured data.
|
|
export def "from ndjson" []: string -> any {
|
|
from json --objects
|
|
}
|
|
|
|
# Convert from [JSONL](https://jsonlines.org/) to structured data.
|
|
export def "from jsonl" []: string -> any {
|
|
from json --objects
|
|
}
|
|
|
|
# Convert structured data to [NDJSON](https://github.com/ndjson/ndjson-spec).
|
|
export def "to ndjson" []: any -> string {
|
|
each { to json --raw } | to text
|
|
}
|
|
|
|
# Convert structured data to [JSONL](https://jsonlines.org/).
|
|
export def "to jsonl" []: any -> string {
|
|
each { to json --raw } | to text
|
|
}
|