@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
25 lines • 996 B
JavaScript
;
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.pathToFunc = pathToFunc;
const hasOwn = Object.prototype.hasOwnProperty;
function pathToFunc(pathPattern, options) {
const paramRE = /\{([a-zA-Z0-9_]+?)\}/g;
return function buildURLPath(params = {}) {
return pathPattern.replace(paramRE, function (_, placeholder) {
if (!hasOwn.call(params, placeholder)) {
throw new Error(`Parameter '${placeholder}' is required`);
}
const value = params[placeholder];
if (typeof value !== "string" && typeof value !== "number") {
throw new Error(`Parameter '${placeholder}' must be a string or number`);
}
return options?.charEncoding === "percent"
? encodeURIComponent(`${value}`)
: `${value}`;
});
};
}
//# sourceMappingURL=url.js.map