RocketChat/Rocket.Chat

View on GitHub
apps/meteor/lib/utils/isPlainObject.ts

Summary

Maintainability
A
0 mins
Test Coverage
export function isPlainObject(value: unknown) {
    return value !== null && typeof value === 'object' && !Array.isArray(value);
}