UNPKG

sound-visualizer

Version:
16 lines (14 loc) 289 B
// src/common/draw/pure.ts var THICKNESS_MAP = { thin: 1, default: 2, thick: 2.75 }; function widthFromOption(lineWidth, canvasWidth) { if (typeof lineWidth === "number") return lineWidth; return THICKNESS_MAP[lineWidth] / 300 * canvasWidth; } export { widthFromOption };