mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 18:07:49 +00:00
Update internal module references in tests.
This commit is contained in:
@@ -296,9 +296,9 @@
|
|||||||
|
|
||||||
if (ui.isModularize) {
|
if (ui.isModularize) {
|
||||||
require(getConfig(), [
|
require(getConfig(), [
|
||||||
'lodash/internal/baseEach',
|
'lodash/_baseEach',
|
||||||
'lodash/internal/isIndex',
|
'lodash/_isIndex',
|
||||||
'lodash/internal/isIterateeCall'
|
'lodash/_isIterateeCall'
|
||||||
], function(baseEach, isIndex, isIterateeCall) {
|
], function(baseEach, isIndex, isIterateeCall) {
|
||||||
lodash._baseEach = baseEach;
|
lodash._baseEach = baseEach;
|
||||||
lodash._isIndex = isIndex;
|
lodash._isIndex = isIndex;
|
||||||
|
|||||||
@@ -672,9 +672,9 @@
|
|||||||
|
|
||||||
if (isModularize && !(amd || isNpm)) {
|
if (isModularize && !(amd || isNpm)) {
|
||||||
lodashStable.each([
|
lodashStable.each([
|
||||||
'internal/baseEach',
|
'_baseEach',
|
||||||
'internal/isIndex',
|
'_isIndex',
|
||||||
'internal/isIterateeCall'
|
'_isIterateeCall'
|
||||||
], function(relPath) {
|
], function(relPath) {
|
||||||
var func = require(path.join(basePath, relPath)),
|
var func = require(path.join(basePath, relPath)),
|
||||||
funcName = path.basename(relPath);
|
funcName = path.basename(relPath);
|
||||||
|
|||||||
Reference in New Issue
Block a user