# postcss-normalize-timing-functions

> Normalize CSS animation/transition timing functions.

Latest version **9.0.2** (published 2026-09-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install postcss-normalize-timing-functions
pnpm add postcss-normalize-timing-functions
yarn add postcss-normalize-timing-functions
bun add postcss-normalize-timing-functions
```

## Health

**Score 55/100 (C)** — status: active.

Positive: no vulnerabilities; recently updated; high maintenance score.

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

## Facts

| | |
|---|---|
| Version | 9.0.2 |
| Published | 2026-09-05 |
| First published | 2017-06-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4976 |
| Author | Ben Briggs |
| Maintainers | beneb, ludovicofischer, ai, chriseppstein, andyjansson, evilebottnawi, cssnano-bot |

## Links

- npm: https://www.npmjs.com/package/postcss-normalize-timing-functions
- Repository: https://github.com/cssnano/cssnano
- Issues: https://github.com/cssnano/cssnano/issues
- npm.io page: https://npm.io/package/postcss-normalize-timing-functions

## Recent versions

- 9.0.2 (latest) — 2026-09-05
- 5.0.0-rc.2 (next) — 2021-03-15
- 4.0.0-nightly.2020.2.6 (nightly) — 2021-02-06
- 9.0.1 — 2026-09-01
- 9.0.0 — 2026-08-27
- 8.0.4 — 2026-08-16
- 8.0.3 — 2026-08-09
- 8.0.2 — 2026-08-04
- 8.0.1 — 2026-06-11
- 8.0.0 — 2026-05-06
- 7.0.3 — 2026-05-02
- 7.0.2 — 2026-04-20
- 7.0.1 — 2025-05-06
- 7.0.0 — 2024-04-24
- 6.0.2 — 2024-03-06
- … 30 more at https://npm.io/package/postcss-normalize-timing-functions/versions

## README

# [postcss][postcss]-normalize-timing-functions

> Normalize timing functions with PostCSS.

## Install

With [npm](https://npmjs.org/package/postcss-normalize-timing-functions) do:

```
npm install postcss-normalize-timing-functions --save
```

## Example

### Input

```css
div {
    animate: fade 3s cubic-bezier(0.42, 0, 1, 1)
}
```

### Output

```css
div {
    animate: fade 3s ease-in
}
``` 

## Usage

See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
examples for your environment.

## Contributors

See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/main/CONTRIBUTORS.md).

## License

MIT © [Ben Briggs](https://beneb.info)

[postcss]: https://github.com/postcss/postcss

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