prepend-cwd

Prepend the CWD to a path

Usage no npm install needed!

<script type="module">
  import prependCwd from 'https://cdn.skypack.dev/prepend-cwd';
</script>

README

prepend-cwd

Prepend the CWD to a path

Travis npm

Use this if you need a path to always be absolute, but the input you're getting could be relative or absolute.

Installation

npm install prepend-cwd

Usage

const cwd = require('prepend-cwd');

cwd('cat.png'); // => /Users/geoff/sites/project/cat.png
cwd('/Users/geoff/sites/project/cat.png') // => /Users/geoff/sites/project/cat.png

API

cwd(path)

Prepend the current working directory to a path, unless the path is absolute, in which case return it as-is.

  • path (String): path to prepend to.

Returns absolute path.

Local Development

git clone https://github.com/gakimball/prepend-cwd
cd prepend-cwd
npm install
npm test

License

MIT © Geoff Kimball