/**
* Given an array of nameservers (ie: as returned
* by `resolveNs` from Node, assert that they're
* zeit.world's.
*/functionisZeitWorld(ns) {
if (!ns.length) {
returnfalse
}
return ns.every(host => host.endsWith('.zeit.world'))
}
module.exports = isZeitWorld