Commit 4b60a5da 4b60a5dacb67b79f1cb07e88f57cd8e6733a2bd3 by Mickaël Andrieu

Finaly, fixed jshint issue by @n1k0

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