UNPKG
check-ethereum-scanner
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Safety checks for new Ethereum tokens
check-ethereum-scanner
/
Ethereum-Renounced-Contract-Scanner
/
node_modules
/
fs-extra
/
lib
/
json
/
jsonfile.js
13 lines
(10 loc)
•
291 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
const
u =
require
(
'universalify'
).
fromCallback
const
jsonFile =
require
(
'jsonfile'
)
module
.
exports
= {
// jsonfile exports
readJson
:
u
(jsonFile.
readFile
),
readJsonSync
: jsonFile.
readFileSync
,
writeJson
:
u
(jsonFile.
writeFile
),
writeJsonSync
: jsonFile.
writeFileSync
}