# bitwise-or

> Bitwise OR as a function

Latest version **1.0.0** (published 2014-09-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install bitwise-or
pnpm add bitwise-or
yarn add bitwise-or
bun add bitwise-or
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2014-09-04 |
| First published | 2014-09-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Kenan Yildirim |
| Maintainers | kenan |
| Keywords | bitwise |

## Links

- npm: https://www.npmjs.com/package/bitwise-or
- Repository: https://github.com/KenanY/bitwise-or
- Issues: https://github.com/KenanY/bitwise-or/issues
- npm.io page: https://npm.io/package/bitwise-or

## Recent versions

- 1.0.0 (latest) — 2014-09-04

## README

# bitwise-or

[![Build Status](https://img.shields.io/travis/KenanY/bitwise-or.svg)](https://travis-ci.org/KenanY/bitwise-or)

Bitwise OR (`|`) as a function. Just in case you ever need to pass the operation
to something else as a function.

## Example

``` javascript
var bitwiseOR = require('bitwise-or');

bitwiseOR(14, 9);
// => 15
```

## Installation

``` bash
$ npm install bitwise-or
```

## API

``` javascript
var bitwiseOR = require('bitwise-or');
```

### `bitwiseOR(x, y)`

Performs the `OR` operation on bits `x` and `y`.

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