canirequire

canirequireCommonJS › 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.

Latest
1.2.1 (Dec 19, 2024)
Module format
CommonJS
Last CommonJS version
1.2.1
TypeScript types
None
Node engines
>= 0.4
Weekly downloads
64.7M
License
MIT

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.

Runtimerequire("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).

VersionsFormatFirst published
1.0.0 – 1.2.1CommonJSSep 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

Similar popularity