# fmix

> MurmurHash3 x86 finalization mix implemented in JavaScript.

Latest version **1.0.0** (published 2021-07-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install fmix
pnpm add fmix
yarn add fmix
bun add fmix
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2021-07-24 |
| First published | 2016-08-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Node | ^12.20.0 \|\| ^14.13.1 \|\| >=16.0.0 |
| Dependencies | 0 |
| Unpacked size | 4.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | linusu |

## Links

- npm: https://www.npmjs.com/package/fmix
- Repository: https://github.com/LinusU/fmix
- Homepage: https://github.com/LinusU/fmix#readme
- Issues: https://github.com/LinusU/fmix/issues
- npm.io page: https://npm.io/package/fmix

## Recent versions

- 1.0.0 (latest) — 2021-07-24
- 0.1.0 — 2016-08-15

## README

# Finalization mix

MurmurHash3 x86 finalization mix implemented in JavaScript.

## Installation

```sh
npm install --save fmix
```

## Usage

```js
import fmix from 'fmix'

console.log(fmix(0xdeadbeef))
//=> 233162409
```

## API

### `fmix(input)`

- `input` (`number`, required)
- returns `number` - finalization mix value of the number `input`

## See also

- [murmur-32](https://github.com/LinusU/murmur-32) - MurmurHash3 x86 32-bit in JavaScript
- [murmur-128](https://github.com/LinusU/murmur-128) - MurmurHash3 x86 128-bit in JavaScript

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