UNPKG

@qrvey/formula-lang

Version:

QFormula support for qrvey projects

9 lines 243 B
export function getNodeValue(str, node) { if (!str || !node) return ''; return sliceNodeValue(str, node); } function sliceNodeValue(str, { from, to }) { return str.slice(from, to); } //# sourceMappingURL=getNodeValue.js.map