Skip to content

Commit fbaf559

Browse files
lint fix
1 parent 5e43ac4 commit fbaf559

25 files changed

+341
-341
lines changed

src/algo/hash/md5.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import {WordArray} from '../../core/core.js';
2-
import {Hasher} from '../../core/hasher';
3-
import {loadWasm} from '../../utils/wasm-utils';
4-
import {wasmBytes} from './md5_wasm';
5-
import {md5Wasm} from './md5_bg';
1+
import { WordArray } from '../../core/core.js';
2+
import { Hasher } from '../../core/hasher';
3+
import { loadWasm } from '../../utils/wasm-utils';
4+
import { wasmBytes } from './md5_wasm';
5+
import { md5Wasm } from './md5_bg';
66

77
/**
88
* MD5 hash algorithm.

src/algo/hash/md5_wasm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/algo/hash/ripemd160.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
2121
*/
2222

2323
import { Hasher } from '../../core/hasher';
24-
import {WordArray} from '../../core/core.js';
25-
import {ripemd160Wasm} from './ripemd160_bg';
26-
import {wasmBytes} from './ripemd160_wasm';
27-
import {loadWasm} from '../../utils/wasm-utils';
24+
import { WordArray } from '../../core/core.js';
25+
import { ripemd160Wasm } from './ripemd160_bg';
26+
import { wasmBytes } from './ripemd160_wasm';
27+
import { loadWasm } from '../../utils/wasm-utils';
2828

2929

3030

src/algo/hash/sha1.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import {WordArray} from '../../core/core';
2-
import {Hasher} from '../../core/hasher';
3-
import {wasmBytes} from './sha1_wasm';
4-
import {loadWasm} from '../../utils/wasm-utils';
5-
import {sha1Wasm} from './sha1_bg';
1+
import { WordArray } from '../../core/core';
2+
import { Hasher } from '../../core/hasher';
3+
import { wasmBytes } from './sha1_wasm';
4+
import { loadWasm } from '../../utils/wasm-utils';
5+
import { sha1Wasm } from './sha1_bg';
66

77
/**
88
* SHA-1 hash algorithm.

src/algo/hash/sha256.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import {WordArray} from '../../core/core.js';
2-
import {Hasher} from '../../core/hasher';
3-
import {loadWasm} from '../../utils/wasm-utils';
4-
import {wasmBytes} from './sha256_wasm';
5-
import {sha256Wasm} from './sha256_bg';
1+
import { WordArray } from '../../core/core.js';
2+
import { Hasher } from '../../core/hasher';
3+
import { loadWasm } from '../../utils/wasm-utils';
4+
import { wasmBytes } from './sha256_wasm';
5+
import { sha256Wasm } from './sha256_bg';
66

77
// Initialization and round constants tables
88
const H = [1779033703, -1150833019, 1013904242, -1521486534, 1359893119, -1694144372, 528734635, 1541459225];

0 commit comments

Comments
 (0)