package.asserts.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ol Show documentation
Show all versions of ol Show documentation
OpenLayers mapping library
The newest version!
/**
* @module ol/asserts
*/
/**
* @param {*} assertion Assertion we expected to be truthy.
* @param {string} errorMessage Error message.
*/
export function assert(assertion, errorMessage) {
if (!assertion) {
throw new Error(errorMessage);
}
}