Closed sigod closed 10 years ago
'use strict'
in global scope of a file only applies to this single file. No other files. If someone takes the code from this file and copies it into some other file then this someone is responsible for removing the 'use strict'
line if necessary.
I just looked at minified version and noticed that
'use strict';
lies in global scope. Wouldn't it break something if after that appears some legacy code?