mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-17 18:37:04 -04:00
[skip ci] Fix handleComponentFailed spam
This commit is contained in:
parent
c25bc0ff4b
commit
244d10dc9e
5 changed files with 38 additions and 4 deletions
|
@ -25,7 +25,7 @@ export * from "./margins";
|
|||
export * from "./misc";
|
||||
export * as Modals from "./modal";
|
||||
export * from "./onceDefined";
|
||||
export * from "./onlyOnce";
|
||||
export * from "./proxyLazy";
|
||||
export * from "./Queue";
|
||||
export * from "./text";
|
||||
|
||||
|
|
29
src/utils/onlyOnce.ts
Normal file
29
src/utils/onlyOnce.ts
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* Vencord, a modification for Discord's desktop app
|
||||
* Copyright (c) 2023 Vendicated and contributors
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
export function onlyOnce<F extends Function>(f: F): F {
|
||||
let called = false;
|
||||
let result: any;
|
||||
return function onlyOnceWrapper(this: unknown) {
|
||||
if (called) return result;
|
||||
|
||||
called = true;
|
||||
|
||||
return (result = f.apply(this, arguments));
|
||||
} as unknown as F;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue