Fixed syntax on jshint annotation
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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 | /* global XMLDocument */ | 83 | /*global XMLDocument */ |
84 | /*jshint eqnull:true, eqeqeq:false */ | 84 | /*jshint eqnull:true, eqeqeq:false */ |
85 | while (input != null) { | 85 | while (input != null) { |
86 | if (input == constructor.prototype) { | 86 | if (input == constructor.prototype) { | ... | ... |
-
Please register or sign in to post a comment