Sha256: 9b899c5dccd6ad8d83c034222a198ac917f97903cab6e824adc462ab87f01942
Contents?: true
Size: 529 Bytes
Versions: 271
Compression:
Stored size: 529 Bytes
Contents
/*global helpers */ axe.addReporter('na', function(results, options, callback) { 'use strict'; console.warn( '"na" reporter will be deprecated in axe v4.0. Use the "v2" reporter instead.' ); if (typeof options === 'function') { callback = options; options = {}; } var out = helpers.processAggregate(results, options); callback({ ...helpers.getEnvironmentData(), toolOptions: options, violations: out.violations, passes: out.passes, incomplete: out.incomplete, inapplicable: out.inapplicable }); });
Version data entries
271 entries across 271 versions & 1 rubygems