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