Commit 11911b6e 11911b6ef019054abb78516fde4931447ec7b025 by Mickaël Andrieu

Tested an implementation to fix jshint issue

1 parent ed6f391a
......@@ -80,7 +80,7 @@ exports.betterTypeOf = betterTypeOf;
*/
function betterInstanceOf(input, constructor) {
"use strict";
/*jshint eqnull:true, eqeqeq:false */
/*jshint eqnull:true, eqeqeq:false, browser:false */
while (input != null) {
if (input == constructor.prototype) {
return true;
......