@maxmind/geoip2-node
Version:
Node.js API for GeoIP2 webservice client and database reader
13 lines (12 loc) • 446 B
JavaScript
import AnonymousIP from './AnonymousIP.js';
export default class AnonymousPlus extends AnonymousIP {
anonymizerConfidence;
networkLastSeen;
providerName;
constructor(response, ipAddress, network) {
super(response, ipAddress, network);
this.anonymizerConfidence = response.anonymizer_confidence;
this.networkLastSeen = response.network_last_seen;
this.providerName = response.provider_name;
}
}