feat(utils): 新增getGlobalThis方法

This commit is contained in:
roymondchen 2024-12-03 14:57:11 +08:00 committed by roymondchen
parent e3f6ef48e6
commit 12230c2f4e
2 changed files with 19 additions and 0 deletions

View File

@ -50,6 +50,7 @@ module.exports = {
[
"^(assert|buffer|child_process|cluster|console|constants|crypto|dgram|dns|domain|events|fs|http|https|module|net|os|path|punycode|querystring|readline|repl|stream|string_decoder|sys|timers|tls|tty|url|util|vm|zlib|freelist|v8|process|async_hooks|http2|perf_hooks)(/.*|$)",
],
["^(node)(:.*|$)"],
// Packages. `react|vue` related packages come first.
["^(react|vue|vite)", "^@?\\w"],
["^(@tmagic)(/.*|$)"],

View File

@ -1,3 +1,4 @@
/* eslint-disable no-nested-ternary */
/*
* Tencent is pleased to support the open source community by making TMagicEditor available.
*
@ -36,6 +37,23 @@ import type { EditorNodeInfo } from '@editor/type';
export * from './dom';
// for typeof global checks without @types/node
declare let global: {};
let _globalThis: any;
export const getGlobalThis = (): any =>
_globalThis ||
(_globalThis =
typeof globalThis !== 'undefined'
? globalThis
: typeof self !== 'undefined'
? self
: typeof window !== 'undefined'
? window
: typeof global !== 'undefined'
? global
: {});
export const sleep = (ms: number): Promise<void> =>
new Promise((resolve) => {
const timer = setTimeout(() => {