From ac08dc7d50a8e79ee03cfc2841cc58a4959612d4 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 25 Aug 2019 18:31:17 +0200 Subject: [PATCH] Fix require in README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f680cd7..e0610d3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you want to split an array into *more than two* arrays, you'll want to use [` ```js "use strict"; -const splitFilter = require("./"); +const splitFilter = require("split-filter"); function isEven(number) { return Math.abs(number) % 2 === 0;