UNPKG

@paciolan/cybersource-sdk

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