Files
n8n-nodes-gwezz-changdunovel/node_modules/n8n-workflow/dist/esm/expressions/expression-helpers.js
2025-10-26 23:10:15 +08:00

10 lines
286 B
JavaScript

/**
* Checks if the given value is an expression. An expression is a string that
* starts with '='.
*/
export const isExpression = (expr) => {
if (typeof expr !== 'string')
return false;
return expr.charAt(0) === '=';
};
//# sourceMappingURL=expression-helpers.js.map