- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
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;
|
|
};
|