UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

14 lines (11 loc) 231 B
const fs = require('fs') module.exports = async function realpathMissing (path) { try { return await fs.promises.realpath(path) } catch (err) { if (err.code === 'ENOENT') { return path } throw err } }