reformat
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M dnsconfig.js → dnsconfig.js
@@ -13,7 +13,7 @@ * @param {string[]} [record.ipv6hint] */ function https(record) { return Object.keys(record) - .map(function (key) { + .map(function(key) { return [key, record[key].join(',')].join('=') }) .join(' ')@@ -57,7 +57,7 @@ * @param {string[]} sources * @param {string} target */ function bulkCNAME(sources, target) { - return sources.map(function (source) { + return sources.map(function(source) { return CNAME(source, target) }) }