Fix module paths.

This commit is contained in:
John-David Dalton
2016-05-02 00:34:58 -07:00
parent 6d70b64b2e
commit 2e59faad8f

View File

@@ -685,15 +685,15 @@
if (coverage || (isModularize && !(amd || isNpm))) {
lodashStable.each([
'_baseEach',
'_Hash',
'_isIndex',
'_isIterateeCall',
'_ListCache',
'_MapCache',
'_Stack'
'baseEach',
'Hash',
'isIndex',
'isIterateeCall',
'ListCache',
'MapCache',
'Stack'
], function(funcName) {
var func = require(path.join(basePath, funcName));
var func = require(path.join(basePath, '_' + funcName));
_['_' + funcName] = func[funcName] || func['default'] || func;
});
}