Sha256: 7756cb8a8bffa727da349f097546fc2dba16361ccdbc62114e08826d5ae0628b
Contents?: true
Size: 661 Bytes
Versions: 375
Compression:
Stored size: 661 Bytes
Contents
/*exported CheckResult */ /*eslint no-unused-vars: 0*/ /** * Constructor for the result of checks * @param {Check} check */ function CheckResult(check) { 'use strict'; /** * ID of the check. Unique in the context of a rule. * @type {String} */ this.id = check.id; /** * Any data passed by Check (by calling `this.data()`) * @type {Mixed} */ this.data = null; /** * Any node that is related to the Check, specified by calling `this.relatedNodes([HTMLElement...])` inside the Check * @type {Array} */ this.relatedNodes = []; /** * The return value of the Check's evaluate function * @type {Mixed} */ this.result = null; }
Version data entries
375 entries across 375 versions & 1 rubygems