From edb9635946370a8325748e8ce1b5c6051a9d0f7a Mon Sep 17 00:00:00 2001 From: Michael Balitsky <35119841+mikstime@users.noreply.github.com> Date: Sat, 19 Oct 2024 21:29:42 +0300 Subject: [PATCH] Update yearOfBirth example It's 2024 now, not 2022 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 75aed0c3..2192f824 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ const is = require('is-thirteen'); is(13).thirteen(); // true is(12.8).roughly.thirteen(); // true is(6).within(10).of.thirteen(); // true -is(2009).yearOfBirth(); // true +is(2011).yearOfBirth(); // true // check your math skillz is(4).plus(5).thirteen(); // false