Skip to content

Commit

Permalink
Update README.md for Deno bundle v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 5, 2024
1 parent f24a94d commit e36e300
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ limitations under the License.
## Usage

```javascript
import string from 'https://cdn.jsdelivr.net/gh/stdlib-js/string@deno/mod.js';
import string from 'https://cdn.jsdelivr.net/gh/stdlib-js/string@v0.3.2-deno/mod.js';
```

You can also import the following named exports from the package:

```javascript
import { acronym, base, camelcase, capitalize, codePointAt, constantcase, dotcase, endsWith, first, forEach, format, fromCodePoint, graphemeClusters2iterator, graphemeClusters2iteratorRight, headercase, kebabcase, last, lowercase, lpad, ltrim, ltrimN, nextCodePointIndex, nextGraphemeClusterBreak, num2words, numGraphemeClusters, pad, pascalcase, percentEncode, prevGraphemeClusterBreak, removeFirst, removeLast, removePunctuation, removeUTF8BOM, removeWords, repeat, replace, replaceBefore, reverse, rpad, rtrim, rtrimN, snakecase, splitGraphemeClusters, startcase, startsWith, substringAfter, substringAfterLast, substringBefore, substringBeforeLast, toWellFormed, trim, truncate, truncateMiddle, uncapitalize, uppercase, utf16ToUTF8Array } from 'https://cdn.jsdelivr.net/gh/stdlib-js/string@deno/mod.js';
import { acronym, base, camelcase, capitalize, codePointAt, constantcase, dotcase, endsWith, first, forEach, format, fromCodePoint, graphemeClusters2iterator, graphemeClusters2iteratorRight, headercase, kebabcase, last, lowercase, lpad, ltrim, ltrimN, nextCodePointIndex, nextGraphemeClusterBreak, num2words, numGraphemeClusters, pad, pascalcase, percentEncode, prevGraphemeClusterBreak, removeFirst, removeLast, removePunctuation, removeUTF8BOM, removeWords, repeat, replace, replaceBefore, reverse, rpad, rtrim, rtrimN, snakecase, splitGraphemeClusters, startcase, startsWith, substringAfter, substringAfterLast, substringBefore, substringBeforeLast, toWellFormed, trim, truncate, truncateMiddle, uncapitalize, uppercase, utf16ToUTF8Array } from 'https://cdn.jsdelivr.net/gh/stdlib-js/string@v0.3.2-deno/mod.js';
```

#### string
Expand Down Expand Up @@ -141,7 +141,7 @@ The namespace exposes the following string manipulation functions:

```javascript
import getKeys from 'https://cdn.jsdelivr.net/gh/stdlib-js/utils/keys@deno/mod.js';
import string from 'https://cdn.jsdelivr.net/gh/stdlib-js/string@deno/mod.js';
import string from 'https://cdn.jsdelivr.net/gh/stdlib-js/string@v0.3.2-deno/mod.js';

console.log( getKeys( string ) );
```
Expand Down

0 comments on commit e36e300

Please sign in to comment.