Commit 511f2eb1 511f2eb1f5141ef8b890b613a360e7e045c7571e by Mickaël Andrieu

Fixed syntax on jshint annotation

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