mirror of https://github.com/jkjoy/sunpeiwen.git
15 lines
268 B
TypeScript
15 lines
268 B
TypeScript
|
/**
|
||
|
Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` → `~/dev`.
|
||
|
|
||
|
@example
|
||
|
```
|
||
|
import tildify = require('tildify');
|
||
|
|
||
|
tildify('/Users/sindresorhus/dev');
|
||
|
//=> '~/dev'
|
||
|
```
|
||
|
*/
|
||
|
declare function tildify(absolutePath: string): string;
|
||
|
|
||
|
export = tildify;
|