# this-is

> An interface for various checks with ability to stringify to readable format.

Latest version **0.0.2** (published 2017-04-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install this-is
pnpm add this-is
yarn add this-is
bun add this-is
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2017-04-17 |
| First published | 2017-04-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | okneigres@gmail.com |
| Maintainers | myfoxtail, okneigres |

## Links

- npm: https://www.npmjs.com/package/this-is
- npm.io page: https://npm.io/package/this-is

## Recent versions

- 0.0.2 (latest) — 2017-04-17
- 0.0.1 — 2017-04-17

## README

# Intro
An interface for various checks with ability to stringify to the readable format.

# Installation
`npm install --save this-is`

## Append to project
#### nodejs
```javascript
var this_is = require('this-is');
```

#### browser
```html
<script type="text/javascript" src="[path to node modules]/this-is/index.js"></script>
```

# Usage
```javascript

var gt5 = this_is.gt(5);
JSON.stringfy(gt5); // {$check: {gt: 5}}
gt5.check(6); // true
gt5.check(4); // false

var btw10and100 = this_is.btw(10, 100);
JSON.stringfy(btw10and100); // {$check: {btw: [10, 100]}}
btw10and100.check(0); // false
btw10and100.check(50); // true
btw10and100.check(150); // false
```

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