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

9 lines
153 B
JavaScript

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