UNPKG

pixel-utils

Version:
5 lines 207 B
import isHidden from "../is-hidden"; import popAlpha from "../pop-alpha"; export default function quickly_convert_rgba_to_rgb(noDataPixel, pixel) { return isHidden(pixel) ? noDataPixel : popAlpha(pixel); }