Use strict equalities in make.js, external/* and extensions/*

This commit is contained in:
Tim van der Meij 2014-08-01 22:26:27 +02:00
parent 00eea3ddb9
commit c29faaa22d
4 changed files with 4 additions and 4 deletions

View file

@ -227,7 +227,7 @@ function getWorkerSrcFiles(filePath) {
try {
var files = JSON.parse(match[1].replace(/'/g, '"'));
var srcFiles = files.filter(function(name) {
return name.indexOf('external') == -1;
return name.indexOf('external') === -1;
});
var externalSrcFiles = files.filter(function(name) {
return name.indexOf('external') > -1;