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

10 lines
225 B
Plaintext

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;
};