An open API service indexing awesome lists of open source software.

https://github.com/arithmetic-type/int32

:beetle: 32-bit signed integer arithmetic and logic operators for JavaScript
https://github.com/arithmetic-type/int32

Last synced: 3 months ago
JSON representation

:beetle: 32-bit signed integer arithmetic and logic operators for JavaScript

Awesome Lists containing this project

README

        

:beetle: [@arithmetic-type/int32](https://arithmetic-type.github.io/int32)
==

32-bit signed integer arithmetic and logic operators for JavaScript.
See [docs](https://arithmetic-type.github.io/int32/index.html).

```js
import {div32, mul32} from '@arithmetic-type/int32';

div32(5, -2); // -2
mul32(-123456, -123456); // -1938485248
```

[![License](https://img.shields.io/github/license/arithmetic-type/int32.svg)](https://raw.githubusercontent.com/arithmetic-type/int32/main/LICENSE)
[![Version](https://img.shields.io/npm/v/@arithmetic-type/int32.svg)](https://www.npmjs.org/package/@arithmetic-type/int32)
[![Tests](https://img.shields.io/github/actions/workflow/status/arithmetic-type/int32/ci.yml?branch=main&event=push&label=tests)](https://github.com/arithmetic-type/int32/actions/workflows/ci.yml?query=branch:main)
[![Dependencies](https://img.shields.io/librariesio/github/arithmetic-type/int32.svg)](https://github.com/arithmetic-type/int32/network/dependencies)
[![GitHub issues](https://img.shields.io/github/issues/arithmetic-type/int32.svg)](https://github.com/arithmetic-type/int32/issues)
[![Downloads](https://img.shields.io/npm/dm/@arithmetic-type/int32.svg)](https://www.npmjs.org/package/@arithmetic-type/int32)

[![Code issues](https://img.shields.io/codeclimate/issues/arithmetic-type/int32.svg)](https://codeclimate.com/github/arithmetic-type/int32/issues)
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/arithmetic-type/int32.svg)](https://codeclimate.com/github/arithmetic-type/int32/trends/churn)
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/arithmetic-type/int32/main.svg)](https://codecov.io/gh/arithmetic-type/int32)
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/arithmetic-type/int32.svg)](https://codeclimate.com/github/arithmetic-type/int32/trends/technical_debt)
[![Documentation](https://arithmetic-type.github.io/int32/badge.svg)](https://arithmetic-type.github.io/int32/source.html)
[![Package size](https://img.shields.io/bundlephobia/minzip/@arithmetic-type/int32)](https://bundlephobia.com/result?p=@arithmetic-type/int32)