mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 16:01:52 +02:00
8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
/* IMPORT */
|
|
import adjustChannel from './adjust_channel.js';
|
|
/* MAIN */
|
|
const saturate = (color, amount) => {
|
|
return adjustChannel(color, 's', amount);
|
|
};
|
|
/* EXPORT */
|
|
export default saturate;
|