"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = makeNoDataRGB;
functionmakeNoDataRGB(noDataValue) {
// typescript not smart enough to realize all values in the array will be the same// @ts-ignorereturn [noDataValue, noDataValue, noDataValue];
}