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

@ -11,12 +11,7 @@ var sha3 = {exports: {}};
* @license MIT * @license MIT
*/ */
var hasRequiredSha3; (function (module) {
function requireSha3 () {
if (hasRequiredSha3) return sha3.exports;
hasRequiredSha3 = 1;
(function (module) {
/*jslint bitwise: true */ /*jslint bitwise: true */
(function () { (function () {
@ -664,11 +659,9 @@ function requireSha3 () {
} }
} }
})(); })();
} (sha3)); } (sha3));
return sha3.exports;
}
var sha3Exports = requireSha3(); var sha3Exports = sha3.exports;
var cshake_128 = sha3Exports.cshake_128; var cshake_128 = sha3Exports.cshake_128;
var cshake_256 = sha3Exports.cshake_256; var cshake_256 = sha3Exports.cshake_256;

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