From 8590122a9f7998c79834baa5e0afc406658ae8e3 Mon Sep 17 00:00:00 2001 From: Kumar Gaurav Date: Wed, 28 Dec 2022 20:04:06 +0530 Subject: [PATCH] Wrong Output * Strict check gives `true` for the statement mentioned in docs. --- docs/parse/is-valid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/parse/is-valid.md b/docs/parse/is-valid.md index c346ab93b..e49ad3078 100644 --- a/docs/parse/is-valid.md +++ b/docs/parse/is-valid.md @@ -20,5 +20,5 @@ Returns a `boolean` indicating whether the `Dayjs`'s date is valid. @>CustomParseFormat ```js dayjs('2022-02-31', 'YYYY-MM-DD', true).isValid(); - // false + // true ```