MCPcopy Index your code
hub / github.com/OpenSignLabs/OpenSign / isEmptyValue

Function isEmptyValue

apps/OpenSign/src/constant/Utils.js:2039–2043  ·  view source on GitHub ↗
(val)

Source from the content-addressed store, hash-verified

2037};
2038
2039export const isEmptyValue = (val) =>
2040 val === null ||
2041 val === undefined ||
2042 (typeof val === "string" && val.trim() === "") ||
2043 (Array.isArray(val) && val.length === 0);
2044
2045//function for embed all type widgets in document using pdf-lib
2046export const embedWidgetsToDoc = async (

Callers 4

handleDisableFunction · 0.90
embedWidgetsDataFunction · 0.90
embedWidgetsToDocFunction · 0.85
handleCheckResponseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected