mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Add templateSettings to funcDependencyMap, add reNative to varDependencyMap, and simplify support property cleanup.
Former-commit-id: 0c55084b4479bb8213a3387fc246f36ca3f185dd
This commit is contained in:
@@ -1664,7 +1664,8 @@
|
||||
// expand categories to function names
|
||||
funcNames.slice().forEach(function(category) {
|
||||
var otherNames = _.filter(categoryMap[category], function(key) {
|
||||
return typeof _[key] == 'function';
|
||||
var type = typeof _[key];
|
||||
return type == 'function' || type == 'undefined';
|
||||
});
|
||||
|
||||
// limit function names to those available for specific builds
|
||||
|
||||
Reference in New Issue
Block a user