From 4840aee8c8620761d46a9270fb0a69beda8afaaf Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 6 Jun 2018 13:19:48 +0100 Subject: [PATCH] add comment Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/vector/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vector/index.js b/src/vector/index.js index e19b2ab051..f7ea076cfa 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -231,6 +231,7 @@ const configFiles = [ `config.${document.domain}.json`, ]; +// Loads a composite config made from applying the fields from each of the above configs in order to a common object async function loadConfig() { // load all configs concurrently, await on them in order each overriding the previous if exists, error only all fail const promises = configFiles.map((configFile) => getConfig(configFile));