UNPKG

pixel-utils

Version:
4 lines (3 loc) 189 B
export default function makeNoDataRgbaString<T extends number | string>(noDataValue: T): `rgba(${T}, ${T}, ${T}, 0)` { return `rgba(${noDataValue}, ${noDataValue}, ${noDataValue}, 0)`; }