- From: Giovanni Ortuno via GitHub <sysbot+gh@w3.org>
- Date: Fri, 22 Jan 2016 17:48:36 +0000
- To: public-web-bluetooth-log@w3.org
How would returning a DataView make conversion more difficult? Converting from an ArrayBuffer to DataView is fairly easy: ```js var buffer = new ArrayBuffer(2); var dataView = new DataView(buffer); ``` Similarly from DataView to ArrayBuffer: ```js var buffer = dataView.buffer; ``` What am I missing? -- GitHub Notification of comment by g-ortuno Please view or discuss this issue at https://github.com/WebBluetoothCG/web-bluetooth/issues/172#issuecomment-173990621 using your GitHub account
Received on Friday, 22 January 2016 17:48:38 UTC