all repos — dns @ 03c0a5f98ebc41325705c1ad91e783faae9261a3

DNS records for my domains, managed via dnscontrol

reformat

Alan Pearce
commit

03c0a5f98ebc41325705c1ad91e783faae9261a3

parent

527b86d0a0532620c96f08a86bf9e3f759749891

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M dnsconfig.jsdnsconfig.js
@@ -11,7 +11,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(' ')
@@ -70,7 +70,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) }) }