From 6090ae0f0929c1e1316b34943d394c25b636c49f Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Mon, 24 Jul 2023 16:33:51 +0000 Subject: [PATCH] Auto-generated commit --- .github/.keepalive | 1 - CONTRIBUTORS | 21 +++++++++++---------- test/test.js | 2 +- test/test.main.js | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) delete mode 100644 .github/.keepalive diff --git a/.github/.keepalive b/.github/.keepalive deleted file mode 100644 index 7baa820..0000000 --- a/.github/.keepalive +++ /dev/null @@ -1 +0,0 @@ -2023-07-01T01:23:44.808Z diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 0c2727b..93c4bde 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3,28 +3,31 @@ # Contributors listed in alphabetical order. Ali Salesi +Amit Jimiwal Athan Reines Brendan Graetz Bruno Fenzl Christopher Dambamuromo +Dan Rose Dominik Moritz +Dorrin Sotoudeh Frank Kovacs -Harshita Kalani <95532771+HarshitaKalani@users.noreply.github.com> -James +Harshita Kalani +James Gelok Jithin KS Joey Reed -Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com> +Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com> Joris Labie Justin Dennison -KATTA NAGA NITHIN <88046362+nithinkatta@users.noreply.github.com> -Marcus +Marcus Fantham Matt Cochrane Milan Raj Momtchil Momtchev -Naresh Jagadeesan <37257700+Infinage@users.noreply.github.com> +Naresh Jagadeesan +Nithin Katta <88046362+nithinkatta@users.noreply.github.com> Ognjen Jevremović Philipp Burckhardt -Pranav <85227306+Pranavchiku@users.noreply.github.com> +Pranav Goswami Ricky Reusser Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com> Ryan Seal @@ -32,7 +35,5 @@ Seyyed Parsa Neshaei Shraddheya Shendre Stephannie Jiménez Gacha Yernar Yergaziyev -dorrin-sot <59933477+dorrin-sot@users.noreply.github.com> -drunken_devv <90555965+amitjimiwal@users.noreply.github.com> orimiles5 <97595296+orimiles5@users.noreply.github.com> -rei2hu +rei2hu diff --git a/test/test.js b/test/test.js index d24debf..cbf3d2e 100644 --- a/test/test.js +++ b/test/test.js @@ -28,6 +28,6 @@ var IS_WEB_WORKER = require( './../lib' ); tape( 'main export is a boolean', function test( t ) { t.ok( true, __filename ); - t.equal( typeof IS_WEB_WORKER, 'boolean', 'main export is a boolean' ); + t.strictEqual( typeof IS_WEB_WORKER, 'boolean', 'main export is a boolean' ); t.end(); }); diff --git a/test/test.main.js b/test/test.main.js index 9ad93a6..aac1bdd 100644 --- a/test/test.main.js +++ b/test/test.main.js @@ -31,7 +31,7 @@ var isWebWorker = require( './../lib/main.js' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.equal( typeof isWebWorker, 'function', 'main export is a function' ); + t.strictEqual( typeof isWebWorker, 'function', 'main export is a function' ); t.end(); });