@palmares/schemas
Version:
This defines a default schema definition for validation of data, it abstract popular schema validation libraries like zod, yup, valibot and others"
72 lines (70 loc) • 2.31 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
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/validators/boolean.ts
var boolean_exports = {};
__export(boolean_exports, {
allowStringParser: () => allowStringParser,
booleanValidation: () => booleanValidation
});
module.exports = __toCommonJS(boolean_exports);
function booleanValidation() {
return {
name: "boolean",
type: "medium",
// eslint-disable-next-line ts/require-await
callback: /* @__PURE__ */ __name(async (value, path, _options) => {
const isValid = typeof value === "boolean";
return {
parsed: value,
errors: isValid ? [] : [
{
isValid: false,
code: "boolean",
// eslint-disable-next-line ts/no-unnecessary-condition
path: path || [],
message: "Value is not a boolean"
}
],
preventChildValidation: true
};
}, "callback")
};
}
__name(booleanValidation, "booleanValidation");
function allowStringParser() {
return {
name: "allowString",
type: "high",
// eslint-disable-next-line ts/require-await
callback: /* @__PURE__ */ __name(async (value, _path, _options) => {
const parsed = Boolean(value);
return {
parsed,
errors: []
};
}, "callback")
};
}
__name(allowStringParser, "allowStringParser");
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
allowStringParser,
booleanValidation
});