cdx
Calculates the Cooldown Multiplier from Ability Haste
import { cdx } from "@lolmath/calc";
cdx(ah)
Arguments
Returns
(Number) The Cooldown Multiplier
Examples
const ah = 0.1; // 10% Ability Haste
const cd = 10; // 10 seconds cooldown
const newCd = cd * cdx(ah); // ~9.1 seconds cooldown