This package exports the internal `baseValues` function from Lodash v3.0.0 as a standalone Node.js module. It provides a low-level, optimized utility for extracting property values from an object, primarily designed for internal use within the larger Lodash library ecosystem. As a v3 module, it precedes the significant architectural changes introduced in Lodash v4, where modularization strategies shifted towards `lodash-es` and direct path imports from the main `lodash` package for improved tree-shaking and modern JavaScript compatibility. Consequently, `lodash._basevalues` is now largely superseded and is not actively maintained, making it unsuitable for new projects aiming for compatibility with modern Lodash versions or ES module environments. Its release cadence is tied to the legacy Lodash v3 development cycle.
npm install lodash._basevaluesVerified import paths — ran on the pinned version, not inferred.
Demonstrates how to import and use the `baseValues` function to extract property values from various inputs like objects and arrays, showcasing its direct application.
For new projects or migrations, prefer `lodash-es` for tree-shaking or use specific function imports from the main `lodash` package (e.g., `import { values } from 'lodash';`). If `baseValues` is strictly needed, consider extracting its logic directly or using `Object.values()` for simple cases.Migrate to modern Lodash alternatives (`lodash-es`) or use native JavaScript equivalents (e.g., `Object.values()`) for collecting values from objects. Audit your dependencies to remove unmaintained packages.
Use the CommonJS `require()` syntax: `const baseValues = require('lodash._basevalues');`. If you must use it in an ESM context, you might need `import * as baseValuesModule from 'lodash._basevalues'; const baseValues = baseValuesModule.default;` and ensure your build tooling handles CJS interoperability.Discontinue use of this package and migrate to the latest, actively maintained versions of `lodash` or `lodash-es` to benefit from all security patches and bug fixes.
Use `const baseValues = require('lodash._basevalues');` for CommonJS environments. In ESM, if strict compatibility is required, `import * as baseValuesModule from 'lodash._basevalues'; const baseValues = baseValuesModule.default;` might work, but migration is recommended.Ensure `const baseValues = require('lodash._basevalues');` is correctly placed and that `lodash._basevalues` is listed in your `package.json` and installed via `npm install`.Run `npm install lodash._basevalues` to install the package. Verify the package name in your `require()` statement matches the installed package.
No dependency data recorded yet.