@qrvey/formula-lang
Version:
QFormula support for qrvey projects
15 lines • 635 B
JavaScript
export * from './customFunctions';
export * from './aggregatedFunctions';
export * from './isNumberParam';
export * from './isStringParam';
export * from './isDateParam';
export * from './isValidDate';
export * from './getMonthMaxDayAllowed';
export * from './getNodeValue';
export * from './getVariableType';
export * from './isLongLiteralNumber';
export * from './cleanInvalidItemsInContext';
export { isAColumnParam, isANumericColumnParam } from './isAColumn';
export const removeQuotes = (str) => str.replace(/^E?'|'$/g, '');
export const replaceDotByUnderscore = (str) => str.replace(/\./g, '_');
//# sourceMappingURL=index.js.map