Kui API Documentation - v11.0.0 / @kui-shell/core / Util
@kui-shell/core.Util
- absolute
- base64PlusGzip
- cwd
- decodeBase64PlusGzip
- expandHomeDir
- fallbackCWD
- flatten
- isHTML
- isPromise
- prettyPrintBytes
- prettyPrintTime
- promiseEach
▸ absolute(filepath
): string
Notes:
-
path.resolve() turns /kui/x into c:\kui\x. We just want to absolute-ify a local filepath if it isn't already so.
-
this only works for local filepaths; if we wanted this to work for all kui VFS, we would need to use
vfs ls
, which is asynchronous.
Name | Type |
---|---|
filepath |
string |
string
An absolute path for the given path
, only if it is not already absolute
packages/core/src/util/absolute.ts:31
▸ base64PlusGzip(plaintext
, compress?
): string
Name | Type | Default value |
---|---|---|
plaintext |
string |
undefined |
compress |
boolean |
true |
string
a base64-encoded and gzip-compressed version of the given
plaintext
packages/core/src/util/gzip.ts:24
▸ Const
cwd(): string
string
packages/core/src/util/home.ts:49
▸ decodeBase64PlusGzip(data
, compressed?
): Buffer
Name | Type | Default value |
---|---|---|
data |
string |
undefined |
compressed |
boolean |
true |
Buffer
the reverse of base64PlusGzip
packages/core/src/util/gzip.ts:33
▸ Const
expandHomeDir(path
): string
Name | Type |
---|---|
path |
string |
string
packages/core/src/util/home.ts:24
▸ fallbackCWD(cwd?
): string
In case of error, e.g. removed CWD, this is our fallback plan
Name | Type |
---|---|
cwd? |
string |
string
packages/core/src/util/home.ts:41
▸ flatten<T
>(arrays
): T
[]
flatten an array of arrays
Name |
---|
T |
Name | Type |
---|---|
arrays |
T [][] |
T
[]
packages/core/src/core/utility.ts:72
▸ isHTML(message
): message is HTMLElement
Name | Type |
---|---|
message |
Node | Entity <void , Row , ResourceWithMetadata <void >> | MessageWithUsageModel |
message is HTMLElement
packages/core/src/util/types.ts:21
▸ isPromise<T
, U
>(content
): content is Promise<T>
Name |
---|
T |
U |
Name | Type |
---|---|
content |
U | Promise <T > |
content is Promise<T>
packages/core/src/util/types.ts:25
▸ prettyPrintBytes(_bytes
): string
Name | Type |
---|---|
_bytes |
string | number |
string
pretty-printed bytes
packages/core/src/webapp/util/bytes.ts:18
▸ Const
prettyPrintTime(timestamp
, fmt?
, previousTimestamp?
, execOptions?
): HTMLElement
Pretty print a timestamp
Name | Type | Default value |
---|---|---|
timestamp |
string | number | Date |
undefined |
fmt |
"delta" | "long" | "short" | "narrow" |
'long' |
previousTimestamp? |
string | number | Date |
undefined |
execOptions |
LanguageBearing |
undefined |
HTMLElement
packages/core/src/webapp/util/time.ts:36
▸ promiseEach<T
, R
>(arr
, fn
): Promise
<R
[]>
Map a asynchronous function to an array sequentially from front to back.
Name |
---|
T |
R |
Name | Type |
---|---|
arr |
T [] |
fn |
(t : T , idx : number ) => R | Promise <R > |
Promise
<R
[]>