@luma.gl/core
Version:
The luma.gl core Device API
8 lines • 312 B
JavaScript
// luma.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import { isNumberArray } from "../utils/is-array.js";
export function isUniformValue(value) {
return isNumberArray(value) || typeof value === 'number' || typeof value === 'boolean';
}
//# sourceMappingURL=is-uniform-value.js.map