pull/42/head
Graham Kelly 6 months ago
parent 5cbee7342a
commit 94b97d5293

@ -11,11 +11,6 @@ var sha3 = {exports: {}};
* @license MIT
*/
var hasRequiredSha3;
function requireSha3 () {
if (hasRequiredSha3) return sha3.exports;
hasRequiredSha3 = 1;
(function (module) {
/*jslint bitwise: true */
(function () {
@ -665,10 +660,8 @@ function requireSha3 () {
}
})();
} (sha3));
return sha3.exports;
}
var sha3Exports = requireSha3();
var sha3Exports = sha3.exports;
var cshake_128 = sha3Exports.cshake_128;
var cshake_256 = sha3Exports.cshake_256;

@ -6,5 +6,7 @@ export default {
file: 'build/sha3.mjs',
format: 'esm'
},
plugins: [commonjs()]
plugins: [commonjs({
strictRequires: false,
})]
};
Loading…
Cancel
Save