UNPKG

@clynn-fe/akfe-editor-stringify-object

Version:

stringify runtime js object

7 lines (6 loc) 190 B
export const isObj = ( value: unknown ): value is Record<string | symbol, unknown> => { const type = typeof value return value !== null && (type === 'object' || type === 'function') }