UNPKG

441 BPlain TextView Raw
1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3import { browserOrNode } from '@aws-amplify/core';
4
5export default callback => {
6 if (browserOrNode().isBrowser && window.location) {
7 const url = window.location.href;
8
9 callback({ url });
10 } else if (browserOrNode().isNode) {
11 // continue building on ssr
12 () => {}; // noop
13 } else {
14 throw new Error('Not supported');
15 }
16};