Returns an ArrayBuffer containing the entire contents of the blob as binary data.
This is a non-standard method specific to Calcish.
arrayBufferSync()
An ArrayBuffer.
If the contents of blob doesn’t fit in an ArrayBuffer, throws a RangeError.
let blob = new Blob(['Hello, world!'])
blob.arrayBufferSync().byteLength
13