UNPKG

heli-agri

Version:

HeliAgri is a high-performance, feature-packed library for creating interactive maps on the web. It can display map tiles, vector data and markers loaded from any source on any web page. OpenLayers has been developed to further the use of geographic infor

14 lines (13 loc) 311 B
/** * @module ol/asserts */ import AssertionError from './AssertionError.js'; /** * @param {*} assertion Assertion we expected to be truthy. * @param {number} errorCode Error code. */ export function assert(assertion, errorCode) { if (!assertion) { throw new AssertionError(errorCode); } }