forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.ts
More file actions
29 lines (27 loc) · 862 Bytes
/
Copy pathmod.ts
File metadata and controls
29 lines (27 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
/**
* Utility functions for working with text.
*
* ```ts
* import { toCamelCase, compareSimilarity } from "@std/text";
* import { assertEquals } from "@std/assert";
*
* assertEquals(toCamelCase("snake_case"), "snakeCase");
*
* const words = ["hi", "help", "hello"];
*
* // Words most similar to "hep" will be at the front
* assertEquals(words.sort(compareSimilarity("hep")), ["help", "hi", "hello"]);
* ```
*
* @module
*/
export * from "./levenshtein_distance.ts";
export * from "./closest_string.ts";
export * from "./compare_similarity.ts";
export * from "./word_similarity_sort.ts";
export * from "./to_camel_case.ts";
export * from "./to_kebab_case.ts";
export * from "./to_pascal_case.ts";
export * from "./to_snake_case.ts";