# ts-easing

> Collection of easing functions in TypeScript

Latest version **0.2.0** (published 2018-11-13) · Unlicense license · 0 weekly downloads

## Install

```sh
npm install ts-easing
pnpm add ts-easing
yarn add ts-easing
bun add ts-easing
```

## Health

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

Positive: has types; no vulnerabilities.

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

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2018-11-13 |
| First published | 2018-10-27 |
| Weekly downloads | 0 |
| License | Unlicense |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 76 |
| Author | @streamich |
| Maintainers | streamich |

## Links

- npm: https://www.npmjs.com/package/ts-easing
- Repository: https://github.com/streamich/ts-easing
- Homepage: https://github.com/streamich/ts-easing#readme
- Issues: https://github.com/streamich/ts-easing/issues
- npm.io page: https://npm.io/package/ts-easing

## Recent versions

- 0.2.0 (latest) — 2018-11-13
- 0.1.1 — 2018-10-27
- 0.1.0 — 2018-10-27

## README

# ts-easing

Collection of easing function in TypeScript.

All functions accept a number in range of `[0..1]`.

All functions return a number, which is guaranteed to start at 0 and end at 1.

```
f(t), where t in [0..1]

f(0) -> 0
f(1) -> 1
```


## Usage

```js
import {easing} from 'ts-easing';

console.log(easing.quadratic(0.5));
```


## License

[Unlicense](./LICENSE) &mdash; public domain.

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