• Downloading & Installing
• Running
• Examples
Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5
File System
• fileExists
• fileRead
• fileWrite
• folderExists
• unzip
• zip
Networking
• curlExecute
• nsapiExecute
Operating System
• shellExecute
Text Encoding
• base64Decode
• base64Encode
Utilities
• abort / halt / quit
• info
• infoRefresh
• sleep
• stringIndent
• uuidGenerate
To make working with multiline strings convenient, Suite.js supports TEXTBLOCKs. These are essentially a type of here document, and are similar to PHP's heredocs.
It's important to note that TEXTBLOCKs do not support automatic variable substitution. Therefore, they are not a direct replacement for JavaScript Template Strings. TEXTBLOCKs are simply a way to work with multiline strings.
To indicate the beginning of a TEXTBLOCK, use three < symbols, followed by the word TEXTBLOCK. To indicate the end of a TEXTBLOCK, use the word TEXTBLOCK followed by three > symbols.
The TEXTBLOCK keyword must be fully capitalized.
var query = << >>; writeln( query );
© Copyright 2025 Tim Dietrich. | Legal Info