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

https://github.com/mikemitterer/ts-check


https://github.com/mikemitterer/ts-check

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Check
> Little helper that provides a syntax to type-safe check values for their validity.

## Installation

npm i @mmit/check
yarn add @mmit/check

## Why?

```typescript
export function isUsingDefaultPort(url: Url): boolean {
// port can be undefined, WS complains about this
const port: number = parseInt(url.port, 10);
...
}

// Looks much nicer!
// parseInt get either a valid port or '' to parse
export function isUsingDefaultPort(url: Url): boolean {
const port: number = parseInt(check(url.port).ifit(isANumber).else('80'), 10);
...
}
```

## Usage

```typescript
import {
check,
isBetween,
isLessThan,
isNotUndefined,
startsWith,
isANumber } from '@mmit/check';

const v1 = check(5).ifit(isNotUndefined).else(5); // v1 = 5
const v2 = check(3).ifit(isBetween(5, 10)).else(5); // v2 = 5
const v3 = check(3).ifit(isBetween(3, 4)).else(5); // v3 = 3
const v4 = check(3).ifit(isLessThan(10)).else(10); // v4 = 10
const v5 = check('Test').ifit(startsWith('M')).else(''); // v5 = ''

const url: Url = new URL('http://www.mikemitterer.at');
const port = parseInt(check(url.port).ifit(isANumber).else('80'), 10 )
```

It is quite easy to write your own `Verifyer`:
```typescript
import { Verifier } from '@mmit/check';

export const endsWith: (test: string) => Verifier = (test: string) => (value) => {
return typeof value === 'string' && value.endsWith(test);
};

```

### Check

For more examples - pls check out my [Tests](https://github.com/MikeMitterer/ts-check/tree/master/src/test/unit/check)

## Bugs / Contribute

You reach me via [GH - Issues](https://github.com/MikeMitterer/ts-check/issues)

Help is always welcome!

## Like

If you like this package please *star* it here on GH or follow me on [Twitter](https://twitter.com/MikeMitterer)

## License

MIT License

Copyright (c) 2019, Mike Mitterer

Mike Mitterer: http://www.MikeMitterer.at/

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.