rittenhop-dev/versions/5.94.2/node_modules/@npmcli/fs/lib/fs.js

9 lines
377 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
const fs = require('fs')
const promisify = require('@gar/promisify')
// this module returns the core fs module wrapped in a proxy that promisifies
// method calls within the getter. we keep it in a separate module so that the
// overridden methods have a consistent way to get to promisified fs methods
// without creating a circular dependency
module.exports = promisify(fs)