UNPKG

marked-code-format

Version:

A marked extension for formatting code blocks using Prettier

9 lines (8 loc) 273 B
/** * Checks if an object is a plain JavaScript object. * * @param obj - The object to check. * @returns `true` if the object is a plain JavaScript object, `false` * otherwise. */ export declare function isPlainObject(obj: unknown): obj is Record<string, unknown>;