Created
May 11, 2012 13:27
-
-
Save kpuputti/2659607 to your computer and use it in GitHub Desktop.
JSLint bug or feature?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
var func1 = function () {}, | |
func2 = function (callback) { callback(); }; | |
// JSLint does not complain about the lines below | |
func2(func1. | |
invalid); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment