UNPKG

@applitools/css-tree

Version:

A temporary custom copy of https://github.com/csstree/csstree

10 lines (7 loc) 225 B
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; };