14 lines
487 B
JavaScript
14 lines
487 B
JavaScript
// Copyright IBM Corp. 2014. All Rights Reserved.
|
|
// Node module: loopback-component-explorer
|
|
// This file is licensed under the MIT License.
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
'use strict';
|
|
|
|
// Simple url joiner. Ensure we don't have to care about whether or not
|
|
// we are fed paths with leading/trailing slashes.
|
|
module.exports = function urlJoin() {
|
|
const args = Array.prototype.slice.call(arguments);
|
|
return args.join('/').replace(/\/+/g, '/');
|
|
};
|