UNPKG

khroma

Version:

A collection of functions for manipulating CSS colors, inspired by SASS.

10 lines (9 loc) 230 B
/* 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;