forked from daren.hsu/line_push
17 lines
351 B
JavaScript
17 lines
351 B
JavaScript
(function (global, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
define([], factory);
|
|
} else if (typeof module !== 'undefined' && module.exports){
|
|
module.exports = factory();
|
|
} else {
|
|
global.sha256 = factory();
|
|
}
|
|
})(this, function () {
|
|
|
|
{{sha256.js}}
|
|
|
|
sha256.code = {{json:sha256.min.js}};
|
|
|
|
return sha256;
|
|
|
|
}); |