From 9373753c86fb621eeae3aab32b4c0119b8e8a000 Mon Sep 17 00:00:00 2001 From: Christian Bundy Date: Sat, 27 Jul 2019 08:38:20 -0700 Subject: [PATCH] Fix duplicate function declaration --- util.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/util.js b/util.js index 26c1f6d..492e3c9 100644 --- a/util.js +++ b/util.js @@ -40,8 +40,6 @@ function isObject (o) { return o && 'object' === typeof o && !isArray(o) } function isUndefined (u) { return u === undefined } function isNull (n) { return n === null } -function isBoolean (b) { return 'boolean' === typeof b } -function isNumber(n) { return 'number' === typeof n} // [] or {} function isContainer (o) {