mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			371 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			371 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
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";
 | 
						|
});
 |