printer-notifications/node_modules/css-tree/cjs/tokenizer/adopt-buffer.cjs

14 lines
268 B
JavaScript
Raw Normal View History

2023-11-13 21:10:04 +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;