diff options
| author | Fuwn <[email protected]> | 2023-12-24 03:03:55 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-24 03:03:55 -0800 |
| commit | d7b57b41ff39d7d0c60c60b66e47cdacf0db9753 (patch) | |
| tree | cf4655842e8333af0e9e6abec388bce6f445be4b /src/lib/Utility/html.ts | |
| parent | style(src): remove .js extension from imports (diff) | |
| download | due.moe-d7b57b41ff39d7d0c60c60b66e47cdacf0db9753.tar.xz due.moe-d7b57b41ff39d7d0c60c60b66e47cdacf0db9753.zip | |
refactor(utility): move utilities to module
Diffstat (limited to 'src/lib/Utility/html.ts')
| -rw-r--r-- | src/lib/Utility/html.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Utility/html.ts b/src/lib/Utility/html.ts new file mode 100644 index 00000000..6d2136aa --- /dev/null +++ b/src/lib/Utility/html.ts @@ -0,0 +1 @@ +export const nbsp = (str: string) => str.replace(/ /g, ' '); |