UNPKG

@aws-amplify/core

Version:
13 lines (12 loc) 520 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import { keyPrefixMatch, processExists, windowExists } from './helpers'; // Tested with svelte 3.59 export function svelteWebDetect() { return windowExists() && keyPrefixMatch(window, '__SVELTE'); } export function svelteSSRDetect() { return (processExists() && typeof process.env !== 'undefined' && !!Object.keys(process.env).find(function (key) { return key.includes('svelte'); })); }