
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@toolz/is-a-regular-object-react
Advanced tools
Utility function for identifying regular JavaScript objects in React projects
is-a-regular-object-react is a tiny, dead-simple utility function for identifying regular JavaScript objects. In JavaScript, a NULL will show a typeof "object". An array will also show a typeof "object". This function returns TRUE for non-NULL, non-array objects - and it returns FALSE for everything else.
NOTE: This package is for React projects. It utilizes the react library to check for valid React elements - which are idenitified in normal JS as having typeof "object". If you are not working in a React project, or if you have no need to distinguish React elements from "regular" JS objects, you should consider using @toolz/is-a-regular-object.
After installation, import the package:
import { isARegularObject } from '@toolz/is-a-regular-object-react';
const API = {
arguments: {
value: {
required,
format: any,
},
},
returns: Boolean,
}
isARegularObject({}); // true
isARegularObject({one: 'uno', two: 'dos'}); // true
isARegularObject({numbers: [1, 2, 3], letters: ['a', 'b', 'c']}); // true
isARegularObject(null); // false
isARegularObject([]); // false
isARegularObject([1, 2, 3]); // false
isARegularObject(''); // false
isARegularObject('object'); // false
isARegularObject(() => console.log('foo')); // false
isARegularObject(<></>); // false
isARegularObject(<><div>foo</div></>); // false
FAQs
Utility function for identifying regular JavaScript objects in React projects
We found that @toolz/is-a-regular-object-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.