| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* jshint esnext:true */
- var toggle = ( el, visibility ) => {
- 'use strict';
- if ( +visibility ) {
- el.show();
- } else {
- el.hide();
- }
- };
- function isNumeric(n) {
- return !isNaN(parseFloat(n)) && isFinite(n);
- }
- /**
- * Converts an RGB color value to HSL. Conversion formula
- * adapted from http://en.wikipedia.org/wiki/HSL_color_space.
- * Assumes r, g, and b are contained in the set [0, 255] and
- * returns h, s, and l for use with the hsl() notation in CSS
- *
- * @param Number r The red color value
- * @param Number g The green color value
- * @param Number b The blue color value
- * @return Array The HSL representation
- */
- function rgbToHsl(r, g, b) {
- r /= 255, g /= 255, b /= 255;
- let max = Math.max(r, g, b), min = Math.min(r, g, b);
- let h, s, l = (max + min) / 2;
- if (max == min) {
- h = s = 0; // achromatic
- } else {
- let d = max - min;
- s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
- switch (max) {
- case r: h = (g - b) / d + (g < b ? 6 : 0); break;
- case g: h = (b - r) / d + 2; break;
- case b: h = (r - g) / d + 4; break;
- }
- h /= 6;
- }
- return [ h * 360, s*100, l*100 ];
- }
- function hexToRgb( hex ) {
- // Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
- let shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
- hex = hex.replace(shorthandRegex, function(m, r, g, b) {
- return r + r + g + g + b + b;
- });
- let result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
- return result ? [
- parseInt(result[1], 16),
- parseInt(result[2], 16),
- parseInt(result[3], 16)
- ] : null;
- }
- function hexToHsl( hex ) {
- return rgbToHsl( ...hexToRgb( hex ) );
- }
- export { toggle, isNumeric, rgbToHsl, hexToRgb, hexToHsl };
|