Added JSDoc for server/

Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com>
This commit is contained in:
Matthew Nickson 2023-01-05 22:19:05 +00:00
parent c7eb72e73b
commit caff9ca736
No known key found for this signature in database
GPG key ID: BF229DCFD4748E05
10 changed files with 104 additions and 4 deletions

View file

@ -37,6 +37,10 @@ class CacheableDnsHttpAgent {
this.enable = isEnable;
}
/**
* Attach cacheable to HTTP agent
* @param {http.Agent} agent Agent to install
*/
static install(agent) {
this.cacheable.install(agent);
}