CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
isEmptyObject.d.mts16 linesDownload Raw Back to predicate
1/**2 * Checks if a value is an empty plain object.3 *4 * @param {unknown} value - The value to check.5 * @returns {value is Record<PropertyKey, never>} - True if the value is an empty plain object, otherwise false.6 *7 * @example8 * isEmptyObject({}); // true9 * isEmptyObject({ a: 1 }); // false10 * isEmptyObject([]); // false11 * isEmptyObject(null); // false12 */13declare function isEmptyObject(value: unknown): value is Record<PropertyKey, never>;14 15export { isEmptyObject };16 
basant307/AI_Governance_Project · CoolFace