aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/cjs/tokenizer/adopt-buffer.cjs
blob: b2956ce40709623a397d53a9ec7f76be4f8e8036 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
'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;