-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathmain.libsonnet
More file actions
26 lines (23 loc) · 927 Bytes
/
main.libsonnet
File metadata and controls
26 lines (23 loc) · 927 Bytes
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
local d = import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet';
{
'#': d.pkg(
name='xtd',
url='github.com/jsonnet-libs/xtd/main.libsonnet',
help=|||
`xtd` aims to collect useful functions not included in the Jsonnet standard library (`std`).
This package serves as a test field for functions intended to be contributed to `std`
in the future, but also provides a place for less general, yet useful utilities.
|||,
),
aggregate: (import './aggregate.libsonnet'),
array: (import './array.libsonnet'),
ascii: (import './ascii.libsonnet'),
camelcase: (import './camelcase.libsonnet'),
date: (import './date.libsonnet'),
inspect: (import './inspect.libsonnet'),
jsonpath: (import './jsonpath.libsonnet'),
number: (import './number.libsonnet'),
string: (import './string.libsonnet'),
units: (import './units.libsonnet'),
url: (import './url.libsonnet'),
}