Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
4b60a5da
...
4b60a5dacb67b79f1cb07e88f57cd8e6733a2bd3
authored
2013-09-11 10:51:06 +0200
by
Mickaël Andrieu
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Finaly, fixed jshint issue by @n1k0
Thanks
1 parent
f16f8346
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
modules/utils.js
modules/utils.js
View file @
4b60a5d
...
...
@@ -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
;
...
...
Please
register
or
sign in
to post a comment