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/md5-hex/browser.js
generated
vendored
Normal file
10
node_modules/md5-hex/browser.js
generated
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
'use strict';
|
||||
const blueimpMd5 = require('blueimp-md5');
|
||||
|
||||
module.exports = data => {
|
||||
if (Array.isArray(data)) {
|
||||
data = data.join('');
|
||||
}
|
||||
|
||||
return blueimpMd5(data);
|
||||
};
|
||||
23
node_modules/md5-hex/index.d.ts
generated
vendored
Normal file
23
node_modules/md5-hex/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/// <reference types="node"/>
|
||||
|
||||
/**
|
||||
Create a MD5 hash with hex encoding.
|
||||
|
||||
@param data - 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.
|
||||
|
||||
@example
|
||||
```
|
||||
import * as fs from 'fs';
|
||||
import md5Hex = require('md5-hex');
|
||||
|
||||
const buffer = fs.readFileSync('unicorn.png');
|
||||
|
||||
md5Hex(buffer);
|
||||
//=> '1abcb33beeb811dca15f0ac3e47b88d9'
|
||||
```
|
||||
*/
|
||||
declare function md5Hex(data: Buffer | string | ReadonlyArray<Buffer | string>): string;
|
||||
|
||||
export = md5Hex;
|
||||
21
node_modules/md5-hex/index.js
generated
vendored
Normal file
21
node_modules/md5-hex/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
'use strict';
|
||||
const crypto = require('crypto');
|
||||
|
||||
module.exports = data => {
|
||||
const hash = crypto.createHash('md5');
|
||||
|
||||
const update = buffer => {
|
||||
const inputEncoding = typeof buffer === 'string' ? 'utf8' : undefined;
|
||||
hash.update(buffer, inputEncoding);
|
||||
};
|
||||
|
||||
if (Array.isArray(data)) {
|
||||
for (const element of data) {
|
||||
update(element);
|
||||
}
|
||||
} else {
|
||||
update(data);
|
||||
}
|
||||
|
||||
return hash.digest('hex');
|
||||
};
|
||||
9
node_modules/md5-hex/license
generated
vendored
Normal file
9
node_modules/md5-hex/license
generated
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
MIT License
|
||||
|
||||
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.
|
||||
41
node_modules/md5-hex/package.json
generated
vendored
Normal file
41
node_modules/md5-hex/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "md5-hex",
|
||||
"version": "3.0.1",
|
||||
"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": ">=8"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsd"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"browser.js"
|
||||
],
|
||||
"keywords": [
|
||||
"hash",
|
||||
"crypto",
|
||||
"md5",
|
||||
"hex",
|
||||
"buffer",
|
||||
"browser"
|
||||
],
|
||||
"dependencies": {
|
||||
"blueimp-md5": "^2.10.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^12.6.2",
|
||||
"ava": "^2.2.0",
|
||||
"tsd": "^0.7.4",
|
||||
"xo": "^0.24.0"
|
||||
},
|
||||
"browser": "browser.js"
|
||||
}
|
||||
49
node_modules/md5-hex/readme.md
generated
vendored
Normal file
49
node_modules/md5-hex/readme.md
generated
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# 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 a bundler like Webpack, Rollup, Browserify.
|
||||
|
||||
Checkout [`hasha`](https://github.com/sindresorhus/hasha) if you need something more flexible.
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install md5-hex
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const fs = require('fs');
|
||||
const md5Hex = require('md5-hex');
|
||||
|
||||
const buffer = fs.readFileSync('unicorn.png');
|
||||
|
||||
md5Hex(buffer);
|
||||
//=> '1abcb33beeb811dca15f0ac3e47b88d9'
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
### md5Hex(data)
|
||||
|
||||
#### data
|
||||
|
||||
Type: `Buffer | string | Array<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.
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
- [crypto-hash](https://github.com/sindresorhus/crypto-hash) - Tiny hashing module that uses the native crypto API in Node.js and the browser
|
||||
- [hasha](https://github.com/sindresorhus/hasha) - Hashing made simple
|
||||
- [hash-obj](https://github.com/sindresorhus/hash-obj) - Get the hash of an object
|
||||
Loading…
Add table
Add a link
Reference in a new issue