Commit 11911b6e 11911b6ef019054abb78516fde4931447ec7b025 by Mickaël Andrieu

Tested an implementation to fix jshint issue

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