3b72157e64
otherwise they don't get transpiled for some reason
6 lines
261 B
JavaScript
6 lines
261 B
JavaScript
export default class Buffer {
|
|
static isBuffer(array) {return array instanceof Uint8Array;}
|
|
static from(arrayBuffer) {return arrayBuffer;}
|
|
static allocUnsafe(size) {return Buffer.alloc(size);}
|
|
static alloc(size) {return new Uint8Array(size);}
|
|
};
|