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

10 lines
230 B
JavaScript
Raw Normal View History

2023-01-29 22:30:24 +00: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;