UNPKG
nconf-yaml
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
YAML format plugin for nconf
github.com/tellnes/nconf-yaml
tellnes/nconf-yaml
nconf-yaml
/
index.js
11 lines
(7 loc)
•
199 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
yaml =
require
(
'js-yaml'
)
exports
.
stringify
=
function
(
obj, options
) {
return
yaml.
safeDump
(obj, options) }
exports
.
parse
=
function
(
obj, options
) {
return
yaml.
safeLoad
(obj, options) }