first commit
This commit is contained in:
10
node_modules/n8n-workflow/dist/esm/expressions/expression-helpers.js
generated
vendored
Normal file
10
node_modules/n8n-workflow/dist/esm/expressions/expression-helpers.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* 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
|
||||
Reference in New Issue
Block a user