UNPKG

@macrostrat/column-components

Version:

React rendering primitives for stratigraphic columns

15 lines (14 loc) 358 B
import type from "../../utils/type.js"; const num2rgb = (num) => { if (type(num) == "number" && num >= 0 && num <= 16777215) { const r = num >> 16; const g = num >> 8 & 255; const b = num & 255; return [r, g, b, 1]; } throw new Error("unknown num color: " + num); }; export { num2rgb as default }; //# sourceMappingURL=num2rgb.js.map