(val)
| 2037 | }; |
| 2038 | |
| 2039 | export 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 |
| 2046 | export const embedWidgetsToDoc = async ( |
no outgoing calls
no test coverage detected