astro-ghostcms/.pnpm-store/v3/files/78/37def1b75b4c862da5a3e60217a...

10 lines
225 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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;
};