http-stash
Version:
Constants for HTTP status codes and their standard messages.
27 lines (18 loc) • 400 B
Markdown
Constants for HTTP status codes and their standard messages.
```bash
npm install http-stash
pnpm add http-stash
yarn add http-stash
```
```javascript
import { ACCEPTED_CODE, ACCEPTED_MESSAGE } from 'http-stash';
console.log(ACCEPTED_CODE); // 202
console.log(ACCEPTED_MESSAGE); // "Accepted"
```
MIT © [Awa](https://github.com/alwalxed)