mirror of
https://github.com/Xahau/Validation-Ledger-Tx-Store-to-xPOP.git
synced 2025-11-19 11:15:50 +00:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
import { stat } from 'fs'
|
|
|
|
const dirExists = async storeDir => await new Promise(resolve => stat(storeDir, staterr => resolve(!staterr)))
|
|
|
|
export {
|
|
dirExists,
|
|
}
|