replace jest with ava
This commit is contained in:
parent
27cc8b23fe
commit
0347b72305
11775 changed files with 84546 additions and 1440575 deletions
10
node_modules/concordance/node_modules/md5-hex/browser.js
generated
vendored
Normal file
10
node_modules/concordance/node_modules/md5-hex/browser.js
generated
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
'use strict';
|
||||
const md5OMatic = require('md5-o-matic');
|
||||
|
||||
module.exports = input => {
|
||||
if (Array.isArray(input)) {
|
||||
input = input.join('');
|
||||
}
|
||||
|
||||
return md5OMatic(input);
|
||||
};
|
||||
23
node_modules/concordance/node_modules/md5-hex/index.js
generated
vendored
Normal file
23
node_modules/concordance/node_modules/md5-hex/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
'use strict';
|
||||
const crypto = require('crypto');
|
||||
|
||||
module.exports = function (input) {
|
||||
const hash = crypto.createHash('md5');
|
||||
|
||||
const update = buf => {
|
||||
const inputEncoding = typeof buf === 'string' ? 'utf8' : undefined;
|
||||
hash.update(buf, inputEncoding);
|
||||
};
|
||||
|
||||
if (arguments.length > 1) {
|
||||
throw new Error('Too many arguments. Try specifying an array.');
|
||||
}
|
||||
|
||||
if (Array.isArray(input)) {
|
||||
input.forEach(update);
|
||||
} else {
|
||||
update(input);
|
||||
}
|
||||
|
||||
return hash.digest('hex');
|
||||
};
|
||||
21
node_modules/concordance/node_modules/md5-hex/license
generated
vendored
Normal file
21
node_modules/concordance/node_modules/md5-hex/license
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
39
node_modules/concordance/node_modules/md5-hex/package.json
generated
vendored
Normal file
39
node_modules/concordance/node_modules/md5-hex/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"name": "md5-hex",
|
||||
"version": "2.0.0",
|
||||
"description": "Create a MD5 hash with hex encoding",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/md5-hex",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"browser.js"
|
||||
],
|
||||
"keywords": [
|
||||
"hash",
|
||||
"crypto",
|
||||
"md5",
|
||||
"hex",
|
||||
"buffer",
|
||||
"browser",
|
||||
"browserify"
|
||||
],
|
||||
"dependencies": {
|
||||
"md5-o-matic": "^0.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "*",
|
||||
"xo": "*"
|
||||
},
|
||||
"browser": "browser.js"
|
||||
}
|
||||
46
node_modules/concordance/node_modules/md5-hex/readme.md
generated
vendored
Normal file
46
node_modules/concordance/node_modules/md5-hex/readme.md
generated
vendored
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# md5-hex [](https://travis-ci.org/sindresorhus/md5-hex)
|
||||
|
||||
> Create a MD5 hash with hex encoding
|
||||
|
||||
*Please don't use MD5 hashes for anything sensitive!*
|
||||
|
||||
Works in the browser too, when used with browserify/webpack.
|
||||
|
||||
Checkout [`hasha`](https://github.com/sindresorhus/hasha) if you need something more flexible.
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save md5-hex
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const fs = require('fs');
|
||||
const md5Hex = require('md5-hex');
|
||||
const buffer = fs.readFileSync('unicorn.png');
|
||||
|
||||
md5Hex(buffer);
|
||||
//=> '1abcb33beeb811dca15f0ac3e47b88d9'
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
### md5Hex(input)
|
||||
|
||||
#### input
|
||||
|
||||
Type: `Buffer` `string` `Buffer[]` `string[]`
|
||||
|
||||
Prefer buffers as they're faster to hash, but strings can be useful for small things.
|
||||
|
||||
Pass an array instead of concatenating strings and/or buffers. The output is the same, but arrays do not incur the overhead of concatenation.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
||||
Loading…
Add table
Add a link
Reference in a new issue