UNPKG

pixel-utils

Version:
5 lines 209 B
export default function makeNoDataRgba(noDataValue) { // typescript not smart enough to realize all values in the array will be the same // @ts-ignore return [noDataValue, noDataValue, noDataValue, 0]; }