deno_string
Deno string utils.
Usage
import { camelCase } from "https://deno.land/x/case/mod.ts";
camelCase("test string");
// => 'testString'
or
import camelCase from "https://deno.land/x/case/camelCase.ts";
camelCase("test string");
// => 'testString'
Supported functions
function | Description |
---|---|
[stripBom ][1] |
Strip UTF-8 byte order mark (BOM) from a string |
License
deno_string is released under the MIT License. See the bundled LICENSE file for details.