UNPKG

cybersource-rest-client

Version:

Node.js SDK for the CyberSource REST API

20 lines (14 loc) 338 B
'use strict' class ExternalLoggerWrapper{ extLogger; constructor(externalLogger) { this.extLogger = externalLogger; } getLogger(){ return this.extLogger; } isLoggerEmpty(){ return typeof this.extLogger === 'undefined' } } module.exports = ExternalLoggerWrapper;