first commit
This commit is contained in:
18
node_modules/n8n-workflow/dist/esm/native-methods/boolean.methods.js
generated
vendored
Normal file
18
node_modules/n8n-workflow/dist/esm/native-methods/boolean.methods.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
export const booleanMethods = {
|
||||
typeName: 'Boolean',
|
||||
functions: {
|
||||
toString: {
|
||||
doc: {
|
||||
name: 'toString',
|
||||
description: "Converts <code>true</code> to the string <code>'true'</code> and <code>false</code> to the string <code>'false'</code>.",
|
||||
examples: [
|
||||
{ example: 'true.toString()', evaluated: "'true'" },
|
||||
{ example: 'false.toString()', evaluated: "'false'" },
|
||||
],
|
||||
docURL: 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString',
|
||||
returnType: 'string',
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=boolean.methods.js.map
|
||||
Reference in New Issue
Block a user