update name to pyconf.js

This commit is contained in:
AJ ONeal 2018-09-03 13:29:19 -06:00
parent 5f5489b95c
commit 2d2ea74c5e
1 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,5 @@
# node-config-python
# pyconf.js
<small>formerly `node-config-python`</small>
Read and write python config files non-destructively (preserves comments and line-order)
@ -52,10 +53,10 @@ Note: the `writeFile` function uses `safe-replace` so that it will work even in
```javascript
pyconf
.parse(str, cb) // => err, object
.stringify(obj, cb) // => err, text
.readFile(filename, cb) // => err, object
.writeFile(filename, obj, cb) // => err
.writeFile(filename, obj, cb) // => err
```