From 198812ad5908c6d6b94a516f0f62bec36a4eca85 Mon Sep 17 00:00:00 2001 From: Ryan Van Etten Date: Fri, 8 May 2020 23:32:03 -0400 Subject: [PATCH] Reformat any --- ssv.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ssv.js b/ssv.js index 23fbba2..22f6190 100644 --- a/ssv.js +++ b/ssv.js @@ -31,7 +31,8 @@ } function any(set, search) { - return count(not(set, search)) < count(set) + var mod = not(set, search) + return count(set) > count(mod) } function all(set, search) {