BlackJack 3df7502993 most working, work on front end | пре 6 година | |
---|---|---|
.. | ||
index.js | пре 6 година | |
license | пре 6 година | |
package.json | пре 6 година | |
readme.md | пре 6 година |
Convert a tilde path to an absolute path:
~/dev
=>/Users/sindresorhus/dev
$ npm install --save untildify
const untildify = require('untildify');
untildify('~/dev');
//=> '/Users/sindresorhus/dev'
See tildify for the inverse.
MIT © Sindre Sorhus