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

14 lines
268 B
Plaintext
Raw Normal View History

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