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