UNPKG

mout

Version:

Modular Utilities

14 lines (10 loc) 380 B
var join = require('../array/join'); /** * Group arguments as path segments, if any of the args is `null` or an * empty string it will be ignored from resulting path. */ function makePath(var_args){ var result = join(Array.prototype.slice.call(arguments), '/'); return result.replace(/\/{2,}/g, '/'); } module.exports = makePath;