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

8 lines
190 B
JavaScript

/* IMPORT */
import Color from '../color/index.js';
/* MAIN */
const toHsla = (color) => {
return Color.format.hsla.stringify(Color.parse(color));
};
/* EXPORT */
export default toHsla;