Fix license issues
[sdnc/oam.git] / dgbuilder / dgeflows / node_modules / morgan / node_modules / basic-auth / Readme.md
diff --git a/dgbuilder/dgeflows/node_modules/morgan/node_modules/basic-auth/Readme.md b/dgbuilder/dgeflows/node_modules/morgan/node_modules/basic-auth/Readme.md
deleted file mode 100644 (file)
index 5859757..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-# basic-auth
-
-  Generic basic auth Authorization header field parser for whatever.
-
-## Installation
-
-```
-$ npm install basic-auth
-```
-
-## Example
-
-  Pass a node request or koa Context object to the module exported. If
-  parsing fails `undefined` is returned, otherwise an object with
-  `.name` and `.pass`.
-
-```js
-var auth = require('basic-auth');
-var user = auth(req);
-// => { name: 'something', pass: 'whatever' }
-
-```
-
-# License
-
-  MIT