Current section

Files

Jump to
udia assets node_modules untildify index.js
Raw

assets/node_modules/untildify/index.js

'use strict';
var osHomedir = require('os-homedir');
var home = osHomedir();
module.exports = function (str) {
if (typeof str !== 'string') {
throw new TypeError('Expected a string');
}
return home ? str.replace(/^~($|\/|\\)/, home + '$1') : str;
};