@stdlib/buffer-alloc-unsafe

Allocate a buffer having a specified number of bytes.

Usage no npm install needed!

<script type="module">
  import stdlibBufferAllocUnsafe from 'https://cdn.skypack.dev/@stdlib/buffer-alloc-unsafe';
</script>

README

alloc

NPM version Build Status Coverage Status dependencies

Allocate a buffer having a specified number of bytes.

Installation

npm install @stdlib/buffer-alloc-unsafe

Usage

var allocUnsafe = require( '@stdlib/buffer-alloc-unsafe' );

allocUnsafe( size )

Unsafely allocates a buffer having a specified number of bytes.

var buf = allocUnsafe( 10 );
// returns <Buffer>

Notes

  • The underlying memory of returned Buffer instances is not initialized. Memory contents are unknown and may contain sensitive data.
  • When the size is less than half the pool size (specified on the Buffer constructor in modern Node.js environments), memory is allocated from the Buffer pool for faster allocation of new Buffer instances.

Examples

var allocUnsafe = require( '@stdlib/buffer-alloc-unsafe' );

var buf;
var i;

// Repeatedly unsafely allocate memory and inspect the buffer contents...
for ( i = 0; i < 100; i++ ) {
    buf = allocUnsafe( 100 );
    console.log( buf.toString() );
}

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2021. The Stdlib Authors.