@aws-amplify/core
Version:
Core category of aws-amplify
14 lines (10 loc) • 397 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import { globalExists, keyPrefixMatch, windowExists } from './helpers';
// Tested with vue 3.3.2
export function vueWebDetect() {
return windowExists() && keyPrefixMatch(window, '__VUE');
}
export function vueSSRDetect() {
return globalExists() && keyPrefixMatch(global, '__VUE');
}