Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
return new Promise((res) => {
communicator.actions$
.pipe(
ofActionType(universalAdPackage.uapLoadStatus),
take(1)
)
.subscribe(action => {
utils.logger('UAP Loaded', [action.isLoaded]);
res(action.isLoaded);
});
});
}