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

8 lines
153 B
JavaScript

/* IMPORT */
import channel from './channel.js';
/* MAIN */
const hue = (color) => {
return channel(color, 'h');
};
/* EXPORT */
export default hue;