"use client";
exportfunctionisEmpty(value){if(value==null)return!0;if(Array.isArray(value)||typeof value=="string")return value.length===0;if(typeof value=="object")returnObject.keys(value).length===0;thrownewError("Invalid value for isEmpty function")}