From d3b94c817447b81c2732006a8cb84a79e9617b6d Mon Sep 17 00:00:00 2001 From: n1474335 Date: Tue, 2 Jan 2018 16:06:57 +0000 Subject: [PATCH] Updated Adding a new operation (markdown) --- Adding-a-new-operation.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Adding-a-new-operation.md b/Adding-a-new-operation.md index 95309e5..cad853b 100644 --- a/Adding-a-new-operation.md +++ b/Adding-a-new-operation.md @@ -107,6 +107,7 @@ Four data types are supported for the input and output of operations: 2. `byteArray` - e.g. `[104,101,108,108,111]` 3. `number` - e.g. `562` or `3.14159265` 4. `html` - e.g. `"

hello

"` + 5. [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) - e.g. `new Uint8Array([104,101,108,108,111]).buffer` Each operation can define any of these data types as their input or output. The data will be automatically converted to the specified type before running the operation.