@awesomeness-js/utils 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +3 -0
- package/package.json +1 -1
- package/src/md5.js +5 -0
- package/test.js +4 -1
package/index.js
CHANGED
|
@@ -8,6 +8,7 @@ import _convertBytes from './src/convertBytes.js';
|
|
|
8
8
|
import _each from './src/each.js';
|
|
9
9
|
import _eachAsync from './src/eachAsync.js';
|
|
10
10
|
import _getAllFiles from './src/getAllFiles.js';
|
|
11
|
+
import _md5 from './src/md5.js';
|
|
11
12
|
import _toPennies from './src/toPennies.js';
|
|
12
13
|
|
|
13
14
|
export { _build as build };
|
|
@@ -15,6 +16,7 @@ export { _convertBytes as convertBytes };
|
|
|
15
16
|
export { _each as each };
|
|
16
17
|
export { _eachAsync as eachAsync };
|
|
17
18
|
export { _getAllFiles as getAllFiles };
|
|
19
|
+
export { _md5 as md5 };
|
|
18
20
|
export { _toPennies as toPennies };
|
|
19
21
|
|
|
20
22
|
export default {
|
|
@@ -31,5 +33,6 @@ export default {
|
|
|
31
33
|
each: _each,
|
|
32
34
|
eachAsync: _eachAsync,
|
|
33
35
|
getAllFiles: _getAllFiles,
|
|
36
|
+
md5: _md5,
|
|
34
37
|
toPennies: _toPennies
|
|
35
38
|
};
|
package/package.json
CHANGED
package/src/md5.js
ADDED