napi-rs/src/utils.ts
2020-09-04 17:11:23 +08:00

6 lines
228 B
TypeScript

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)