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
c6bc08ef
...
c6bc08ef2801e643bfd9ed9d15ca178cd0ccfeb7
authored
2013-09-11 10:16:12 +0200
by
Mickaël Andrieu
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Implemented weak equality for jslint locally
... and BTW removed from global configuration
1 parent
d38b6ae7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
.jshintrc
modules/utils.js
.jshintrc
View file @
c6bc08e
...
...
@@ -3,8 +3,7 @@
"browser": true,
"debug": true,
"devel": true,
"eqeqeq": false,
"eqnull": true,
"eqeqeq": true,
"evil": true,
"maxparams": 5,
"maxdepth": 3,
...
...
modules/utils.js
View file @
c6bc08e
...
...
@@ -80,6 +80,7 @@ exports.betterTypeOf = betterTypeOf;
*/
function
betterInstanceOf
(
input
,
constructor
)
{
"use strict"
;
/*jshint eqnull:true */
while
(
input
!=
null
)
{
if
(
input
==
constructor
.
prototype
)
{
return
true
;
...
...
Please
register
or
sign in
to post a comment