Source: config.js

/*! util-web-test/modules/config */
/*jslint
    browser, long
*/
/*global
*/
/**
 * config laoder for test web application.
 *
 * @module util-web-test/modules/config
 */
export default Object.freeze(function fetchConfig() {
    return fetch("./config.json").then(
        (response) => response.json()
    );
});