Bump to v0.4.1.

Former-commit-id: ef73c95edc22d59412affba898d9820251c06b5b
This commit is contained in:
John-David Dalton
2012-07-12 00:06:36 -04:00
parent 1f3546a9f6
commit 46781e7614
8 changed files with 167 additions and 159 deletions

View File

@@ -615,6 +615,12 @@
}
});
}
// remove `isArguments` fallback before `isArguments` is transformed by
// other parts of the build process
if (isRemoved(source, 'isArguments')) {
source = removeIsArgumentsFallback(source);
}
}());
/*--------------------------------------------------------------------------*/
@@ -827,9 +833,6 @@
/*--------------------------------------------------------------------------*/
// remove associated functions, variables, and code snippets that the minifier may miss
if (isRemoved(source, 'isArguments')) {
source = removeIsArgumentsFallback(source);
}
if (isRemoved(source, 'mixin')) {
// remove `LoDash` constructor
source = removeFunction(source, 'LoDash');