Test/node_modules/khroma/dist/methods/channel.js
2026-04-09 22:54:00 +07:00

9 lines
230 B
JavaScript

/* 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;