UNPKG
a-pollo
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.2
2.0.1
1.18.99
1.16.98
1.16.96
1.15.96
1.15.93
1.15.92
1.5.77
1.5.73
1.5.69
1.5.67
1.5.61
1.5.60
1.5.50
1.5.47
1.3.43
1.3.42
1.2.40
1.2.39
1.2.35
1.2.32
1.2.28
1.1.28
1.1.25
1.1.23
1.1.11
1.0.5
1.0.4
1.0.3
1.0.2
The visual CSS style guide for teams
github.com/vitto/a-pollo
vitto/a-pollo
a-pollo
/
test
/
save-json.js
12 lines
(9 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
fs
=
require
(
'fs'
)
function
saveJson
(
path, data,
exit
)
{
const
exitWhenFinished
=
exit
||
true
fs.
writeFileSync
(path, JSON.
stringify
(data,
null
,
2
),
'utf8'
)
if
(exitWhenFinished) { process.
exit
() } } module.exports = saveJson