Sha256: 05aad3061703d73299bdde57c66986cb252368dd675ec306b17bc0c478648aa3
Contents?: true
Size: 486 Bytes
Versions: 69
Compression:
Stored size: 486 Bytes
Contents
var join = require('../array/join'); var slice = require('../array/slice'); /** * 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(slice(arguments), '/'); // need to disconsider duplicate '/' after protocol (eg: 'http://') return result.replace(/([^:\/]|^)\/{2,}/g, '$1/'); } module.exports = makePath;
Version data entries
69 entries across 69 versions & 2 rubygems