-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
315e4bd
commit d02054b
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ NameTag is a simple username generator with a dictionary of safe words to use to | |
## How to use | ||
|
||
```ts | ||
import { nametag } from "https://deno.land/x/[email protected].1/mod.ts"; | ||
import { nametag } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
const friendlyName = nametag(); | ||
``` | ||
|
@@ -16,7 +16,7 @@ Or with a configuration: | |
import { | ||
nametag, | ||
type NametagConfig, | ||
} from "https://deno.land/x/[email protected].1/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
const config: NametagConfig = { | ||
words: 5, | ||
|