simplified stuff (thx WebStorm)

This commit is contained in:
Sebastian Seedorf
2020-12-05 23:00:08 +01:00
parent adf8c400bc
commit 87e69e29c6
8 changed files with 21 additions and 20 deletions

View File

@@ -24,11 +24,11 @@ Deno.test("isSymbol (no match)", async () => {
false,
"",
"foo",
new String(),
new String("bar"),
String(),
String("bar"),
() => {},
function named() {},
new Object(),
{},
];
for (const value of values) {
assertNotEquals(await validate(value, isSymbol()), [], String(value));