Skip to main content
variable size
import { size } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Gets the size of an array, object or string.

Get type of val (array, object or string). Use length property for arrays. Use length or size value if available or number of keys for objects. Use size of a Blob object created from val for strings. Split strings into array of characters with split('') and return its length.

type

(val: any) => unknown