mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 21:21:53 +02:00
8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
/* IMPORT */
|
|
import channel from './channel.js';
|
|
/* MAIN */
|
|
const hue = (color) => {
|
|
return channel(color, 'h');
|
|
};
|
|
/* EXPORT */
|
|
export default hue;
|