mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-24 04:41:54 +02:00
8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
/* IMPORT */
|
|
import channel from './channel.js';
|
|
/* MAIN */
|
|
const blue = (color) => {
|
|
return channel(color, 'b');
|
|
};
|
|
/* EXPORT */
|
|
export default blue;
|