UNPKG

@deck.gl/json

Version:

JSON format rendering components for deck.gl

9 lines 263 B
// deck.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors export default function assert(condition, message = '') { if (!condition) { throw new Error(`JSON conversion error ${message}`); } } //# sourceMappingURL=assert.js.map