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