UNPKG

yahoo-finance2

Version:
13 lines (12 loc) 346 B
export const boolean = function boolean(input, _schema, _ctx, errors, instancePath, _dataCtx, schemaPath) { if (typeof input !== "boolean") { errors.push({ instancePath, schemaPath, message: "Expected a boolean", data: input, }); return false; } return true; };