constructor()

in src/a11y.js [14:26]


    constructor(...args) {
        const {
          React,
          ReactDOM,
          ...options
        } = validate(...args);

        this.options = options;
        this.React = React;
        this.ReactDOM = ReactDOM;
        this.suite = new Suite(React, ReactDOM, this.options);
        this.patchReact();
    }