UNPKG

@applitools/css-tree

Version:

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

14 lines (9 loc) 268 B
'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;