1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/utils/index.ts
Roman 9284611e7e fix downloading file, added common/utils/downloadFile
Signed-off-by: Roman <ixrock@gmail.com>
2020-11-23 12:30:33 +02:00

22 lines
631 B
TypeScript
Executable File

// Common usage utils & helpers
export const noop: any = Function();
export const isElectron = !!navigator.userAgent.match(/Electron/);
export * from "../../common/utils";
export * from "./cssVar";
export * from "./cssNames";
export * from "../../common/event-emitter";
export * from "./saveFile";
export * from "./prevDefault";
export * from "./createStorage";
export * from "./interval";
export * from "./copyToClipboard";
export * from "./formatDuration";
export * from "./isReactNode";
export * from "./convertMemory";
export * from "./convertCpu";
export * from "./metricUnitsToNumber";
export * from "./display-booleans";