UNPKG

@macrostrat/column-components

Version:

React rendering primitives for stratigraphic columns

14 lines (13 loc) 372 B
"use strict"; const type = require("../../utils/type.cjs"); 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); }; module.exports = num2rgb; //# sourceMappingURL=num2rgb.cjs.map