tencent cloud

util.toArrayBuffer
Last updated: 2025-03-11 20:21:26
util.toArrayBuffer
Last updated: 2025-03-11 20:21:26
During the script execution, util.toArrayBuffer is used to convert parameters into byte arrays in JS.
toArrayBuffer(data: string | ArrayBuffer): ArrayBuffer

Parameters

Parameter
Type
Description
data
string or ArrayBuffer.
The data to be converted.

Return

Type
Description
ArrayBuffer
The converted results.

Samples

Call the method to perform data conversion:
import util from 'pts/util';

export default function () {
console.log(util.toArrayBuffer('12345')); // [object ArrayBuffer]
}

Was this page helpful?
You can also Contact Sales or Submit a Ticket for help.
Yes
No

Feedback