mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-26 06:07:35 +08:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
const MIN_SIZE = 16 * 1024;
|
|
|
|
export function adoptBuffer(buffer = null, size) {
|
|
if (buffer === null || buffer.length < size) {
|
|
return new Uint32Array(Math.max(size + 1024, MIN_SIZE));
|
|
}
|
|
|
|
return buffer;
|
|
};
|