HTTP methods related enums and utilities.
npm install @bluejay/http-method


- node >= 8.6, tested with:
- node@8.6.0
- node@12.8.1
- typescript >= 4.0, tested with:
- typescript@4.0.2
npm i @bluejay/http-method [--save]
``typescript
import { HTTPMethod, isHTTPMethod } from '@bluejay/http-method';
HTTPMethod.GET; // get
isHTTPMethod(HTTPMethod.GET); // true
``
See Github Pages.