@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
47 lines (44 loc) • 1.52 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/handleValueOrFn.ts
var handleValueOrFn_exports = {};
__export(handleValueOrFn_exports, {
handleValueOrFn: () => handleValueOrFn2
});
module.exports = __toCommonJS(handleValueOrFn_exports);
// src/utils/handleValueOrFn.ts
function handleValueOrFn(value, url, defaultValue) {
if (typeof value === "function") {
return value(url);
}
if (typeof value !== "undefined") {
return value;
}
if (typeof defaultValue !== "undefined") {
return defaultValue;
}
return void 0;
}
// src/handleValueOrFn.ts
var handleValueOrFn2 = handleValueOrFn;
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
handleValueOrFn
});
//# sourceMappingURL=handleValueOrFn.js.map