adonis-framework
Version:
Adonis framework makes it easy for you to write webapps with less code
45 lines (39 loc) • 763 B
JavaScript
/**
* adonis-framework
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
let registeredDomains = []
let domains = exports = module.exports = {}
/**
* pushes a new domain to registeredDomains
*
* @param {String} domain
*
* @private
*/
domains.add = function (domain) {
registeredDomains.push(domain)
}
/**
* returns domains matching to a given
* host
*
* @param {String} host
* @return {Boolean}
*
* @private
*/
domains.match = function (host) {
let isDomain = false
registeredDomains.forEach(function (domain) {
if (domain.test(host)) {
isDomain = true
}
})
return isDomain
}