@ocubist/error-alchemy
Version:
A powerful Node.js error-handling-framework with custom error types for easy debugging, enhanced error management, strong zod-support and useful quality-of-life-functionality for asserting and validating values.
16 lines • 527 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.validate = void 0;
/**
* Synchronously validates a value against a Zod schema.
*
* @template T
* @param {T} value - The value to validate.
* @param {ZodSchema<T>} schema - The Zod schema to validate against.
* @returns {boolean} A boolean indicating whether the value is valid.
*/
var validate = function (value, schema) {
return schema.safeParse(value).success;
};
exports.validate = validate;
//# sourceMappingURL=validate.js.map