All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.asserts.js Maven / Gradle / Ivy

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy