"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.urlPath = urlPath;
function urlPath(strings, ...values) {
let str = '';
let i;
for (i = 0; i < strings.length; i++) {
str += strings[0] + encodeURIComponent(values[i]);
}
return str;
}