mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
b63d243e33
Closes #1275
12 lines
384 B
JavaScript
12 lines
384 B
JavaScript
ace.define("ace/snippets/jsonata",["require","exports","module"], function(require, exports, module) {
|
|
"use strict";
|
|
var snippetText = "";
|
|
for (var fn in jsonata.functions) {
|
|
if (jsonata.functions.hasOwnProperty(fn)) {
|
|
snippetText += "# "+fn+"\nsnippet "+fn+"\n\t"+jsonata.getFunctionSnippet(fn)+"\n"
|
|
}
|
|
}
|
|
exports.snippetText = snippetText;
|
|
exports.scope = "jsonata";
|
|
});
|