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

package.error.js Maven / Gradle / Ivy

Go to download

Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset

The newest version!
function BrowserslistError(message) {
  this.name = 'BrowserslistError'
  this.message = message
  this.browserslist = true
  if (Error.captureStackTrace) {
    Error.captureStackTrace(this, BrowserslistError)
  }
}

BrowserslistError.prototype = Error.prototype

module.exports = BrowserslistError




© 2015 - 2024 Weber Informatics LLC | Privacy Policy