Registry / serialization / lodash._isiterateecall

lodash._isiterateecall

JSON →
library3.0.9jsnpmunverified

This package is an internal module from lodash v3.0.9, providing the `isIterateeCall` function used internally by lodash. It is part of the lodash modular builds (the 'modern build') and is not intended for direct public consumption. The package is obsolete and unmaintained; lodash v4.0.0 (released in 2016) introduced major breaking changes, removing many internal modules. Users should not use this package directly; instead, use the main lodash package (`lodash`) or `lodash-es` for modern ESM usage. The package has approximately 5 million weekly downloads, mostly as a transitive dependency of older lodash v3.x ecosystem. No active releases since 2016.

npm install lodash._isiterateecall
INSTALL
IMPORT
SIG · LODASH._ISITERATEE
L
lodash._isiterateecall
serializationjavascriptv3.0.9
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18226 runs
build_error
glibc
node 18226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

isIterateeCall
require('lodash._isiterateecall')
import isIterateeCall from 'lodash._isiterateecall'
This is a CJS-only module. No ESM exports. Using import may fail.
lodash.isIterateeCall (attempting)
var _ = require('lodash'); _.isIterateeCall(value, index, object)
var isIterateeCall = require('lodash.isiterteecall')
There is no official public lodash.isIterateeCall package. The internal module is not exported in lodash v4.
lodash v4 internal replacement
Do not use any replacement; this function is internal and not needed externally.
lodash v4 removed this internal module entirely. No public equivalent exists.

Demonstrates using the deprecated internal module. Not recommended for new code.

var lodash = require('lodash'); var internalIsIterateeCall = require('lodash._isiterateecall'); // Example: used internally in lodash v3 iteratee utilities var result = internalIsIterateeCall([1, 2, 3], 2, '2'); console.log(result); // true or false, but not meant for public use
Debug
Known issues
deprecatedlodash._isiterateecall is deprecated and no longer maintained. Use the main lodash package instead.
fix
Install lodash v4.x: npm install lodash --save, then use _.isEqual etc.
affects: >=3.0.0
breakinglodash v4.0.0 removed all internal modules like lodash._isiterateecall. Code depending on this package will break.
fix
Do not use this package. Migrate to lodash v4 and use its public API.
affects: >=4.0.0
gotchaPackage has no TypeScript definitions. Using with TypeScript requires custom type declarations.
fix
Add a .d.ts file: declare module 'lodash._isiterateecall' { export = any; }
affects: >=3.0.0
gotchaThis package is part of the 'modern build' of lodash v3, not compatible with older lodash v2 versions.
fix
Ensure compatibility by using lodash v3.x consistent subset.
affects: >=3.0.0
Errors
Common errors & fixes
Cannot find module 'lodash._isiterateecall'
Package not installed or typo in package name (missing underscore).
fix
Run: npm install lodash._isiterateecall --save  (note double underscore)
import isIterateeCall from 'lodash._isiterateecall' throws SyntaxError: Unexpected identifier
Trying to use ES module import on a CJS-only package.
fix
Use require('lodash._isiterateecall') or transpile with Node --experimental-require-module.
TypeError: lodash_1.isIterateeCall is not a function
Attempting to call a function that does not exist in lodash v4 public API.
fix
Use lodash v3 or access _.isIterateeCall only if using lodash v3 internals.
Upgrade
Version history
3.0.9latest on npm
Audit
Dependencies
lodash.isarrayrequiredUsed internally by isIterateeCall in lodash v3.x
lodash._isnativerequiredUsed internally by isIterateeCall in lodash v3.x
Agent activity
9 hits · last 30 days
node
8
Bingbot
1
Resources
lodash._isiterateecall — npm install lodash._isiterateecall · libregistry