# nv-facutil-init-ta

> nv-facutil-init-ta ======================= - init fill a typed-array with a typed-array-unit

Latest version **1.0.5** (published 2025-05-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install nv-facutil-init-ta
pnpm add nv-facutil-init-ta
yarn add nv-facutil-init-ta
bun add nv-facutil-init-ta
```

## Health

**Score 25/100 (F)** — status: maintenance-mode.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.5 |
| Published | 2025-05-11 |
| First published | 2025-05-11 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | ihgazni2 |

## Links

- npm: https://www.npmjs.com/package/nv-facutil-init-ta
- npm.io page: https://npm.io/package/nv-facutil-init-ta

## Recent versions

- 1.0.5 (latest) — 2025-05-11

## README

nv-facutil-init-ta
=======================
- init fill a typed-array with a typed-array-unit

install
=======
- npm install nv-facutil-init-ta

splitted
--------


usage
=====
    
       const x=require("nv-facutil-init-ta") 

example
-------

            var uint = new Uint32Array([1,2,3])
            var tary = new Uint32Array(30)

            > x(tary,uint)
            10
            > tary
            Uint32Array(30) [
              1, 2, 3, 1, 2, 3, 1, 2, 3,
              1, 2, 3, 1, 2, 3, 1, 2, 3,
              1, 2, 3, 1, 2, 3, 1, 2, 3,
              1, 2, 3
            ]
            > 


            > var tary = new Uint32Array(30)
            > x(tary,uint,5)
            10
            > tary
            Uint32Array(30) [
              0, 0, 0, 0, 0, 0, 0, 0, 0,
              0, 0, 0, 0, 0, 0, 1, 2, 3,
              1, 2, 3, 1, 2, 3, 1, 2, 3,
              1, 2, 3
            ]
            > 


            > x(tary,uint,5,8)
            8
            > tary
            Uint32Array(30) [
              0, 0, 0, 0, 0, 0, 0, 0, 0,
              0, 0, 0, 0, 0, 0, 1, 2, 3,
              1, 2, 3, 1, 2, 3, 0, 0, 0,
              0, 0, 0
            ]
            > 

METHODS
========


APIS
=======


LICENSE
=======
- ISC

---
_Source: https://npm.io/package/nv-facutil-init-ta · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
