constructor()

in src/Bootstrapper.js [35:54]


	constructor() {
		// Sanity check
		if (!window || (!window && !window.document)) {
			throw new Error('React Habitat requires a window but cannot see one :(');
		}

		/**
		 * The DOM component selector
		 * @type {string}
		 */
		this.componentSelector = DEFAULT_HABITAT_SELECTOR;

		/**
		 * The container
		 * Slashes to avoid super collisions
		 * @type {Container|null}
		 * @private
		 */
		this.__container__ = null;
	}