UNPKG

@qrvey/formula-lang

Version:

QFormula support for qrvey projects

10 lines 343 B
export function unshiftCustomFunctions(customFunctionList, expression) { if (!expression) return undefined; const { value } = expression; const customs = Array.from(customFunctionList).join('\n'); if (customs) return `${customs}\n${value}`; return value; } //# sourceMappingURL=unshiftCustomFunctions.js.map