mout
Version:
Modular Utilities
14 lines (11 loc) • 378 B
JavaScript
define(['../array/join'], function(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, '/');
}
return makePath;
});