Image Tags
The following commands / statements are valid:
load <url> <imageName>
- Loads the given URL and saves it as imageName
'use strict'; | |
const UMP = {}; | |
export default function inspect( | |
value: any, | |
{ depth = 2, hidden = false } = {} | |
): string | Promise<String> { | |
if (is.number(value)) return `${value}`; | |
if (is.regexp(value)) return `${value}`; | |
if (is.bigint(value)) return `${value}n`; |