Commit f16f8346 f16f8346c8e9efaee11bb13b80b9e8091b859e77 by Mickaël Andrieu

Tested an implementation to fix jshint issue

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