mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* add parsing of quota values which are non-numeric in the general case * add unit tests Signed-off-by: Sebastian Malton <smalton@mirantis.com> Co-authored-by: Sebastian Malton <smalton@mirantis.com>
24 lines
686 B
TypeScript
Executable File
24 lines
686 B
TypeScript
Executable File
// Common usage utils & helpers
|
|
|
|
export const noop: any = Function();
|
|
export const isElectron = !!navigator.userAgent.match(/Electron/);
|
|
|
|
export * from '../../common/utils/camelCase'
|
|
export * from '../../common/utils/base64'
|
|
|
|
export * from './autobind'
|
|
export * from './cssVar'
|
|
export * from './cssNames'
|
|
export * from './eventEmitter'
|
|
export * from './downloadFile'
|
|
export * from './prevDefault'
|
|
export * from './createStorage'
|
|
export * from './interval'
|
|
export * from './debouncePromise'
|
|
export * from './copyToClipboard'
|
|
export * from './formatDuration'
|
|
export * from './isReactNode'
|
|
export * from './convertMemory'
|
|
export * from './convertCpu'
|
|
export * from './metricUnitsToNumber'
|