This package, `lodash._objecttypes`, is an internal utility module extracted from Lo-Dash v2.4.1, released in December 2013. It provided the `objectTypes` variable, an internal structure used by Lo-Dash's core functions for type checking (e.g., `isObject`, `isPlainObject`). It was part of Lo-Dash's modularization strategy in its second major version, where internal components and methods were published as separate npm packages. However, this specific package is not intended for direct external consumption and its internal structure, existence, and API stability were never guaranteed. The main Lodash library has since evolved significantly, with the current stable version being 4.18.1 (as of April 2026), and its internal modularization and distribution methods (like `lodash-es` for ES modules) have changed considerably. This package is no longer maintained as a standalone entity and its functionality is integrated or superseded within modern Lodash versions. Its primary historical differentiator was serving as a foundational internal piece of the Lodash v2 type-checking mechanism.
npm install lodash._objecttypesVerified import paths — ran on the pinned version, not inferred.
Demonstrates the CommonJS import and the structure of the `objectTypes` object, illustrating its internal purpose in Lodash v2.
Do not use internal Lodash packages. Rely solely on the public API of the main `lodash` package or its officially modularized versions (e.g., `lodash-es`).
Migrate any direct usage to public Lodash API methods. If you are examining Lodash internals, refer to the source code of the main `lodash` repository for the relevant version.
Upgrade to the latest stable version of the main `lodash` package (currently 4.18.1 or higher) and leverage its public API. Do not use unmaintained internal modules.
If you absolutely must inspect or use this internal module (which is strongly discouraged), use `const objectTypes = require('lodash._objecttypes');`.Use CommonJS `require` syntax: `const objectTypes = require('lodash._objecttypes');`This package is abandoned and not part of modern Lodash. Do not use it. Instead, use the public API of the main `lodash` package (e.g., `_.isObjectLike`) or `lodash-es` if you need modular ES imports.
Access properties of `objectTypes` directly, e.g., `objectTypes[typeof myVar]`. Do not call it as a function.
No dependency data recorded yet.