From 54eebcb215ce318d549134f0423af18b6a338bd9 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Sun, 29 May 2022 19:52:40 +0200 Subject: [PATCH] Fix typo: coarce -> coerce --- src/boolean.ts | 2 +- src/date.ts | 2 +- src/number.ts | 2 +- src/schema.ts | 4 ++-- src/string.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/boolean.ts b/src/boolean.ts index 1f5a7fc83..d16dae06b 100644 --- a/src/boolean.ts +++ b/src/boolean.ts @@ -41,7 +41,7 @@ export default class BooleanSchema< this.withMutation(() => { this.transform((value, _raw, ctx) => { - if (ctx.spec.coarce && !ctx.isType(value)) { + if (ctx.spec.coerce && !ctx.isType(value)) { if (/^(true|1)$/i.test(String(value))) return true; if (/^(false|0)$/i.test(String(value))) return false; } diff --git a/src/date.ts b/src/date.ts index adc171e00..73ae34cda 100644 --- a/src/date.ts +++ b/src/date.ts @@ -47,7 +47,7 @@ export default class DateSchema< this.withMutation(() => { this.transform((value, _raw, ctx) => { - if (!ctx.spec.coarce || ctx.isType(value)) return value; + if (!ctx.spec.coerce || ctx.isType(value)) return value; value = isoParse(value); diff --git a/src/number.ts b/src/number.ts index fbd300c3c..8c5d3fc97 100644 --- a/src/number.ts +++ b/src/number.ts @@ -44,7 +44,7 @@ export default class NumberSchema< this.withMutation(() => { this.transform((value, _raw, ctx) => { - if (!ctx.spec.coarce) return value; + if (!ctx.spec.coerce) return value; let parsed = value; if (typeof parsed === 'string') { diff --git a/src/schema.ts b/src/schema.ts index 36fd84f5c..a471c599d 100644 --- a/src/schema.ts +++ b/src/schema.ts @@ -35,7 +35,7 @@ import toArray from './util/toArray'; import cloneDeep from './util/cloneDeep'; export type SchemaSpec = { - coarce: boolean; + coerce: boolean; nullable: boolean; optional: boolean; default?: TDefault | (() => TDefault); @@ -170,7 +170,7 @@ export default abstract class Schema< recursive: true, nullable: false, optional: true, - coarce: true, + coerce: true, ...options?.spec, }; diff --git a/src/string.ts b/src/string.ts index 7404fba99..c54c271da 100644 --- a/src/string.ts +++ b/src/string.ts @@ -67,7 +67,7 @@ export default class StringSchema< this.withMutation(() => { this.transform((value, _raw, ctx) => { - if (!ctx.spec.coarce || ctx.isType(value)) return value; + if (!ctx.spec.coerce || ctx.isType(value)) return value; // don't ever convert arrays if (Array.isArray(value)) return value;