GitShow/sindresorhus/is-obj
sindresorhus

is-obj

Check if a value is an object

by sindresorhus
Star on GitHubForknpm

JavaScript

42 stars9 forks5 contributorsQuiet · 5y agoSince 2015v3.0.0MIT

Meet the team

See all 5 on GitHub →
sindresorhus
sindresorhus12 contributions
gillstrom
gillstrom1 contribution
coreyfarrell
coreyfarrell1 contribution
BendingBender
BendingBender1 contribution
Richienb
Richienb1 contribution

Languages

View on GitHub →
JavaScript80.2%
TypeScript19.8%

Commit activity

Last 12 weeks · 0 commits

Full graph →

Community health

4 of 6 standards met

Community profile →
85
✓README✓License✓Contributing✓Code of Conduct○Issue Template○PR Template

Recent fixes

View closed PRs →
pablodegrande
On Node 13, I kept receive "is-obj require() of ES modules is not supported"ClosedIssue

Another module used require to include is-obj, and that broke compilation. I had to remove type: module from is-obj's package.json and migrate the code to: module.exports = function(value) { const type = typeof value; return value !== null && (type === 'object' type === 'function'); } are you planning to apply this change? it would be nice, as under node 13 otherwise is-obj compiles as an ES module, and breaks compiling.

pablodegrande · 5y ago
Richienb
Move to GitHub ActionsMergedPR
Richienb · 5y ago
mycoin
Update index.jsMergedPR

update to es5, emmmm, it's fucking..

mycoin · 6y ago
Structured data for AI agents

Repository: sindresorhus/is-obj. Description: Check if a value is an object Stars: 42, Forks: 9. Primary language: JavaScript. Languages: JavaScript (80.2%), TypeScript (19.8%). License: MIT. Latest release: v3.0.0 (5y ago). Open PRs: 0, open issues: 0. Last activity: 5y ago. Community health: 85%. Top contributors: sindresorhus, gillstrom, coreyfarrell, BendingBender, Richienb.

·@ofershap

Replace github.com with gitshow.dev