mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-05-01 07:21:53 +02:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
/* IMPORT */
|
|
import channel from './channel.js';
|
|
import lang from './lang.js';
|
|
import unit from './unit.js';
|
|
/* MAIN */
|
|
const Utils = {
|
|
channel,
|
|
lang,
|
|
unit
|
|
};
|
|
/* EXPORT */
|
|
export default Utils;
|