unescape
Unescapes a string by replacing escape sequences with their corresponding characters.
Import:
import { unescape } from 'obsidian-dev-utils/string';Signature:
function unescape(str: string): stringParameters:
| Parameter | Type | Description |
|---|---|---|
str | string | The string to unescape. |
Returns: string — The unescaped string.