You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

538 B

untildify Build Status

Convert a tilde path to an absolute path: ~/dev => /Users/sindresorhus/dev

Install

$ npm install --save untildify

Usage

const untildify = require('untildify');

untildify('~/dev');
//=> '/Users/sindresorhus/dev'

See tildify for the inverse.

License

MIT © Sindre Sorhus