10 lines
230 B
JavaScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
/* IMPORT */
import _ from '../utils/index.js';
import Color from '../color/index.js';
/* MAIN */
const channel = (color, channel) => {
return _.lang.round(Color.parse(color)[channel]);
};
/* EXPORT */
export default channel;