blowfish/node_modules/khroma/dist/methods/green.js

9 lines
157 B
JavaScript
Raw Permalink Normal View History

2023-01-29 22:30:24 +00:00
/* IMPORT */
import channel from './channel.js';
/* MAIN */
const green = (color) => {
return channel(color, 'g');
};
/* EXPORT */
export default green;