UNPKG

@maplibre/maplibre-gl-style-spec

Version:
14 lines (10 loc) 331 B
import {ValidationError} from '../error/validation_error'; export function validateConstants(options) { const key = options.key; const constants = options.value; if (constants) { return [new ValidationError(key, constants, 'constants have been deprecated as of v8')]; } else { return []; } }