0.3.1 • Published 2 years ago

basic-toml v0.3.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

basic-toml

build Coverage Status

A simple TOML subset parser. ~540 bytes minified with brotli.

TOML Subset

# any single line comment
packages = ['a', 'b'] # or end comment

# any propety as object (or nested objects)
[field]
simple = true
version = 0 # any JSON compatible value ... and ...
# ... dates are returned as Date instance
when = 1979-05-27T07:32:00-08:00

# quoted keys
"inline" = { OK = true, key = "value" }

# array of JSON compatible entries
[[externals]]
src = 'https://cdn.spot.on'
name = 'spot-on'

[[externals."special.case"]]
ok = true

[[preload]]
files = [
  './3rd-party.js',
  './other.js'
]
0.3.1

2 years ago

0.3.0

2 years ago

0.2.4

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.0

2 years ago