Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/landing/ui/field/color/src/internal/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/landing/ui/field/color/src/internal/hex-to-hsl.js

import hexToRgb from './hex-to-rgb';
import rgbToHsla from './rgb-to-hsl';

export default function hexToHsl(hex: string): {h: number, s: number, l: number, a: number}
{
	const rgb = hexToRgb(hex.trim());

	return rgbToHsla(rgb);
}