Sha256: 0ff3b3b5d60f00129aebe2cf8841bb905fe54820fc44634c6333168187f3c2d8
Contents?: true
Size: 1.19 KB
Versions: 104
Compression:
Stored size: 1.19 KB
Contents
/*exported axe, commons */ /*global axeFunction, module, define */ // exported namespace for aXe /*eslint no-use-before-define: 0, no-unused-vars: 0*/ var axe = axe || {}; axe.version = '<%= pkg.version %>'; if (typeof define === 'function' && define.amd) { // Explicitly naming the module to avoid mismatched anonymous define() modules when injected in a page define('axe-core', [], function() { 'use strict'; return axe; }); } if ( typeof module === 'object' && module.exports && typeof axeFunction.toString === 'function' ) { axe.source = '(' + axeFunction.toString() + ')(typeof window === "object" ? window : this);'; module.exports = axe; } if (typeof window.getComputedStyle === 'function') { window.axe = axe; } // local namespace for common functions var commons; function SupportError(error) { this.name = 'SupportError'; this.cause = error.cause; this.message = `\`${ error.cause }\` - feature unsupported in your environment.`; if (error.ruleId) { this.ruleId = error.ruleId; this.message += ` Skipping ${this.ruleId} rule.`; } this.stack = new Error().stack; } SupportError.prototype = Object.create(Error.prototype); SupportError.prototype.constructor = SupportError;
Version data entries
104 entries across 104 versions & 1 rubygems