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