9 lines
157 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
/* IMPORT */
import channel from './channel.js';
/* MAIN */
const green = (color) => {
return channel(color, 'g');
};
/* EXPORT */
export default green;