UNPKG

379 BJavaScriptView Raw
1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3var SELF = '_self';
4export var launchUri = function (url) {
5 var windowProxy = window.open(url, SELF);
6 if (windowProxy) {
7 return Promise.resolve(windowProxy);
8 }
9 else {
10 return Promise.reject();
11 }
12};
13//# sourceMappingURL=urlOpener.js.map
\No newline at end of file