Remove noArraySliceOnStrings from the mobile build.

Former-commit-id: 943f907672f211be4f3d1c2e8fe8d5769a0a569e
This commit is contained in:
John-David Dalton
2012-07-11 12:42:38 -04:00
parent 0976a3b721
commit 971a26c123
3 changed files with 12 additions and 7 deletions

View File

@@ -817,9 +817,14 @@
// remove `noCharByIndex` from `_.reduceRight`
source = source.replace(/noCharByIndex *&&[^:]+: *([^;]+)/g, '$1');
// remove `noArraySliceOnStrings` from `_.toArray`
source = source.replace(/noArraySliceOnStrings *\?[^:]+: *([^)]+)/g, '$1');
source = removeVar(source, 'extendIteratorOptions');
source = removeVar(source, 'hasDontEnumBug');
source = removeVar(source, 'iteratorTemplate');
source = removeVar(source, 'noArraySliceOnStrings');
source = removeVar(source, 'noCharByIndex');
source = removeIsArgumentsFallback(source);
source = removeKeysOptimization(source);
}