diff --git a/src/hosting.js b/src/hosting.js index b8e3da5..4d783f2 100644 --- a/src/hosting.js +++ b/src/hosting.js @@ -2,6 +2,10 @@ import hostingAPI from "./hosting-api.js"; +/** + * @module hosting + */ + /** * Check if a domain is hosted by a green web host. * @param {string|array} domain - The domain to check, or an array of domains to be checked. @@ -17,6 +21,4 @@ function check(domain, optionsOrAgentId) { return hostingAPI.check(domain, optionsOrAgentId); } -export default { - check, -}; +export default check;