Cleanup build and docs.

Former-commit-id: 7e0719bb11e3f22ab09d51b52ab930699cbecf17
This commit is contained in:
John-David Dalton
2013-03-10 11:03:47 -07:00
parent f9b5d6644d
commit 6830195127
6 changed files with 161 additions and 163 deletions

View File

@@ -1087,7 +1087,7 @@
// remove `support.argsClass` from `_.isEmpty`
source = source.replace(matchFunction(source, 'isEmpty'), function(match) {
return match.replace(/\s*\(support\.argsClass *\?([^:]+):.+?\)\)/g, '$1');
return match.replace(/\s*\(support\.argsClass\s*\?([^:]+):.+?\)\)/g, '$1');
});
// remove `support.argsClass` from `_.isPlainObject`
@@ -2345,7 +2345,7 @@
source = source.replace(matchFunction(source, 'template'), function(match) {
return match
.replace(/iteratorTemplate *&& */g, '')
.replace(/iteratorTemplate *\? *([^:]+?) *:[^,;]+/g, '$1');
.replace(/iteratorTemplate\s*\?\s*([^:]+?)\s*:[^,;]+/g, '$1');
});
/*----------------------------------------------------------------------*/