Packages

Advanced configurable navigation component for Phoenix LiveView with native DaisyUI integration, Tailwind CSS support, permissions filtering, dropdowns, mega menus, and modern responsive design. Optimized for Phoenix 1.8+ and LiveView 1.1+.

Current section

Files

Jump to
navbuddy assets node_modules culori src jch convertJabToJch.js
Raw

assets/node_modules/culori/src/jch/convertJabToJch.js

import normalizeHue from '../util/normalizeHue.js';
const convertJabToJch = ({ j, a, b, alpha }) => {
let c = Math.sqrt(a * a + b * b);
let res = {
mode: 'jch',
j,
c
};
if (c) {
res.h = normalizeHue((Math.atan2(b, a) * 180) / Math.PI);
}
if (alpha !== undefined) {
res.alpha = alpha;
}
return res;
};
export default convertJabToJch;