-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update version to 2.5.1 in README and package.json
- Loading branch information
1 parent
be007ba
commit d0fed3e
Showing
2 changed files
with
7 additions
and
7 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 |
---|---|---|
|
@@ -20,12 +20,12 @@ Feel free to find bugs and report them to me. Your feedback is highly appreciate | |
jsDelivr: | ||
|
||
```bash | ||
https://cdn.jsdelivr.net/npm/[email protected].0/+esm | ||
https://cdn.jsdelivr.net/npm/[email protected].1/+esm | ||
``` | ||
|
||
```html | ||
<script type="module"> | ||
import multiform-validator from "https://cdn.jsdelivr.net/npm/[email protected].0/+esm" | ||
import multiform-validator from "https://cdn.jsdelivr.net/npm/[email protected].1/+esm" | ||
</script> | ||
``` | ||
|
||
|
@@ -34,19 +34,19 @@ https://cdn.jsdelivr.net/npm/[email protected]/+esm | |
unpkg: | ||
|
||
```bash | ||
https://unpkg.com/[email protected].0/dist/cjs/index.cjs | ||
https://unpkg.com/[email protected].1/dist/cjs/index.cjs | ||
``` | ||
|
||
```html | ||
<script src="https://unpkg.com/[email protected].0/dist/cjs/index.cjs"></script> | ||
<script src="https://unpkg.com/[email protected].1/dist/cjs/index.cjs"></script> | ||
``` | ||
|
||
### Example of use with CDN | ||
|
||
using cjs: | ||
|
||
```html | ||
<script src="https://unpkg.com/[email protected].0/dist/cjs/index.cjs"></script> | ||
<script src="https://unpkg.com/[email protected].1/dist/cjs/index.cjs"></script> | ||
<script> | ||
const emailResult = isEmail("123456"); | ||
const cpfResult = cpfIsValid("123456"); | ||
|
@@ -61,7 +61,7 @@ using esm: | |
|
||
```html | ||
<script type="module"> | ||
import multiformValidator from "https://cdn.jsdelivr.net/npm/[email protected].0/+esm"; | ||
import multiformValidator from "https://cdn.jsdelivr.net/npm/[email protected].1/+esm"; | ||
const emailResult = multiformValidator.isEmail("123456"); | ||
const cpfResult = multiformValidator.cpfIsValid("123456"); | ||
|
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