1.0.0 • Published 4 years ago

@borderless/parse-authorization v1.0.0

Weekly downloads
105
License
MIT
Repository
github
Last release
4 years ago

Parse Authorization

NPM version NPM downloads Build status Test coverage

Parse the HTTP authorization header.

Installation

npm install @borderless/parse-authorization --save

Usage

import { basic, bearer } from "@borderless/parse-authorization";

expect(bearer("Bearer 123")).toEqual("123");
expect(basic("Basic dGVzdDoxMjPCow==")).toEqual(["test", "123£"]);

TypeScript

This project is written using TypeScript and publishes the definitions directly to NPM.

License

MIT