# hex-window

> Generates sliding windows of hex bounds

Latest version **1.0.0** (published 2015-01-15) · BSD license · 0 weekly downloads

## Install

```sh
npm install hex-window
pnpm add hex-window
yarn add hex-window
bun add hex-window
```

## 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 | 2015-01-15 |
| First published | 2015-01-15 |
| Weekly downloads | 0 |
| License | BSD |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Wes Widner |
| Maintainers | kai5263499 |
| Keywords | hex, window, batch |

## Links

- npm: https://www.npmjs.com/package/hex-window
- Repository: https://github.com/kai5263499/hex-window
- Issues: https://github.com/kai5263499/hex-window/issues
- npm.io page: https://npm.io/package/hex-window

## Dependencies (1)

- [bignum](https://npm.io/package/bignum.md) ^0.9.1

## Alternatives

- [postcss-color-hex-alpha](https://npm.io/package/postcss-color-hex-alpha.md) — 6.4M weekly downloads
- [randomcolor](https://npm.io/package/randomcolor.md) — 348.0K weekly downloads
- [bows](https://npm.io/package/bows.md) — 1.3K weekly downloads
- [ep_prefer_color_scheme](https://npm.io/package/ep_prefer_color_scheme.md) — 260 weekly downloads
- [coc-yank](https://npm.io/package/coc-yank.md) — 61 weekly downloads

## Recent versions

- 1.0.0 (latest) — 2015-01-15

## README

hex-window
=========

This is a simple class for calculating the sliding window of a hex string.

## Installation

    npm install hex-window --save

## Usage
    var HexWindow = require("hex-window");

    // Initialize HexWindow with a starting string and a "resolution" consisting of zeros and ones only 
    // which denotes the amount to slide the window by.
    var hexwindow = new HexWindow("ffffffffffffffffffffffffffffffff","10000000000000000000000000000000");
    var results = hexwindow.back();

    // results contains {"upper":"ffffffffffffffffffffffffffffffff","lower","efffffffffffffffffffffffffffffff"}

## Additional features

You can also widen or narrow the window via the .narrow() and .widen() functions.

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