From de0ddd5355a5a200e268aca7953c1b1b3c7ecfee Mon Sep 17 00:00:00 2001 From: Joel Purra Date: Tue, 21 Jan 2020 18:42:29 +0100 Subject: [PATCH] WIP link to assertions in readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 593b8df..370dcd6 100644 --- a/readme.md +++ b/readme.md @@ -38,7 +38,7 @@ is.number(6); //=> true ``` -Assertions perform the same type checks, but throw errors if the type does not match. +[Assertions](#type-assertions) perform the same type checks, but throw errors if the type does not match. ```js const {assert} = require('@sindresorhus/is');