Files
infocom-systems-design/node_modules/khroma/dist/methods/channel.js
2025-10-03 22:27:28 +03:00

10 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;