import * as mod from "https://dotland.deno.dev/std@0.223.0/console/mod.ts";
Functions for console-related tasks such as TTY text layout.
Unicode width
unicodeWidth
calculates the physical width of a string in a
TTY-like environment.
import { unicodeWidth } from "https://deno.land/std@0.223.0/console/unicode_width.ts";
unicodeWidth("天地玄黃宇宙洪荒"); // 16
Functions
Calculate the physical width of a string in a TTY-like environment. This is useful for cases such as calculating where a line-wrap will occur and underlining strings. |