stoplightio/yaml

View on GitHub
src/utils.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export const isObject = (sth: unknown): sth is object => sth !== null && typeof sth === 'object';