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.
31 lines
538 B
31 lines
538 B
# untildify [](https://travis-ci.org/sindresorhus/untildify)
|
|
|
|
> Convert a tilde path to an absolute path: `~/dev` => `/Users/sindresorhus/dev`
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install --save untildify
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
const untildify = require('untildify');
|
|
|
|
untildify('~/dev');
|
|
//=> '/Users/sindresorhus/dev'
|
|
```
|
|
|
|
|
|
## Related
|
|
|
|
See [tildify](https://github.com/sindresorhus/tildify) for the inverse.
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](https://sindresorhus.com)
|