9 lines
190 B
JavaScript
9 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;
|