canirequire › CommonJS › object.values
Is object.values ESM-only? Can you require() it?
ES2017 spec-compliant Object.values shim.
Last verified Sep 9, 2026 against object.values@1.2.1. JSON
CommonJS CommonJS — require() works on every Node.js version
object.values ships CommonJS only. require("object.values") works everywhere. import "object.values" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.
Does object.values@1.2.1 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("object.values") from a CommonJS file and import "object.values" from an ES module.
| Runtime | require("object.values") | import "object.values" |
|---|---|---|
| Node.js 18 | ✓ works | ✓ works |
| Node.js 20 | ✓ works | ✓ works |
| Node.js 22 | ✓ works | ✓ works |
| Node.js 24 | ✓ works | ✓ works |
| Node.js 26 | ✓ works | ✓ works |
| Bun 1.4 | ✓ works | ✓ works |
How to import object.values
ES modules (import)
import objectValues from "object.values";Named imports from a CommonJS package only work when Node.js can statically detect them. If a named import fails, use the default import and destructure.
CommonJS (require)
const objectValues = require("object.values");Module format by version
Derived from the type, main and exports fields of every stable release on npm (15 versions; the newest 15 shown).
| Versions | Format | First published |
|---|---|---|
| 1.0.0 – 1.2.1 | CommonJS | Sep 2, 2015 |
Frequently asked
Is object.values ESM-only?
object.values@1.2.1 is a CommonJS package. object.values ships CommonJS only. require("object.values") works everywhere. import "object.values" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.
Can I import object.values with ES module syntax?
Yes. import objectValues from "object.values" works in Node.js and Bun because they support importing CommonJS modules. Named imports work only when Node.js can statically detect the exports.
Does object.values work in Bun?
Yes. import "object.values" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does object.values ship TypeScript types?
No. object.values ships no type declarations and there is no @types package for it.
Links
Other commonjs packages
- debug 4.4.3CommonJS
- semver 7.8.5CommonJS
- ms 2.1.3CommonJS
- picomatch 4.0.7CommonJS
- ajv 8.20.0CommonJS
- source-map 0.8.0CommonJS
- react-is 19.2.8CommonJS
- readable-stream 4.7.0CommonJS
Similar popularity
- date-fns 4.4.0Dual
- jest-matcher-utils 30.5.1Dual
- loose-envify 1.4.0CommonJS
- dequal 2.0.3Dual
- htmlparser2 12.0.0ESM-only
- data-urls 7.0.0CommonJS
- string.prototype.trimend 1.0.10CommonJS
- d3-scale 4.0.2ESM-only