Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
390 Bytes
export const isObject = (v: any): v is Record<string, any> =>
v != null && typeof v === "object" && !Array.isArray(v)
export const isCssVar = (v: string): boolean => /^var\(--.+\)$/.test(v)
export const isString = (v: any): v is string => typeof v === "string"
type AnyFunction = (...args: any[]) => any
export const isFunction = (v: any): v is AnyFunction => typeof v === "function"