UNPKG

@lordicon/element

Version:

This package offers developers a convenient method for embedding, controlling, and customizing animated icons from Lordicon within web projects.

8 lines 251 B
/** * Checks if value is object like. * @param value Value to check. * @returns True if value is object like, false otherwise. */ export function isObjectLike(value: any): value is object { return value !== null && typeof value === "object"; }