Sha256: d869dedfc68e5caae9563e4a0e28c3cd029813b8b202e6b2495e4a365fa1e39c
Contents?: true
Size: 470 Bytes
Versions: 69
Compression:
Stored size: 470 Bytes
Contents
define(['../array/join', '../array/slice'], function(join, 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/'); } return makePath; });
Version data entries
69 entries across 69 versions & 2 rubygems