napi-rs/cli/src/utils.ts

7 lines
228 B
TypeScript
Raw Normal View History

2020-09-04 17:22:15 +09:00
import { readFile, writeFile, exists } from 'fs'
import { promisify } from 'util'
export const readFileAsync = promisify(readFile)
export const writeFileAsync = promisify(writeFile)
export const existsAsync = promisify(exists)