aureooms/js-integer-little-endian

View on GitHub
src/1-new/array/_zeros.js

Summary

Maintainability
A
0 mins
Test Coverage
import { _alloc , _reset } from './' ;

export function _zeros ( n ) {

    const a = _alloc( n ) ;

    _reset( a , 0 , n ) ;

    return a ;

}