mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-28 09:48:23 -05:00
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
'use strict';
|
|
|
|
var replaceHomedir = require('replace-homedir');
|
|
|
|
function tildify(filepath) {
|
|
return replaceHomedir(filepath, '~');
|
|
}
|
|
|
|
module.exports = tildify;
|