astro-ghostcms/.pnpm-store/v3/files/23/c308840f5bc62563578acedf96f...

14 lines
268 B
Plaintext

'use strict';
const MIN_SIZE = 16 * 1024;
function adoptBuffer(buffer = null, size) {
if (buffer === null || buffer.length < size) {
return new Uint32Array(Math.max(size + 1024, MIN_SIZE));
}
return buffer;
}
exports.adoptBuffer = adoptBuffer;