DIR: /proc/1991109/cwd/usr/share/nodejs/path-exists/ |
Current File : //proc/1991109/cwd/usr/share/nodejs/path-exists/index.cjs |
const { pathExists, pathExistsSync } = require("./pathExists.cjs"); const res = (...args) => { return pathExists(...args); } // old API res.sync = pathExistsSync; // new API res.pathExists = pathExists; res.pathExistsSync = pathExistsSync; module.exports = res; |