Skip to content

Commit

Permalink
capitalize all preset ready
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermeasn committed Nov 28, 2023
1 parent b983a45 commit 2386057
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mask-hooks",
"version": "3.1.1",
"version": "3.2.0",
"description": "Lightweight package with functions and hooks for masking data inputs and outputs for Node.JS projects",
"main": "dist/common/index.js",
"module": "dist/module/index.js",
Expand Down
2 changes: 1 addition & 1 deletion tests/presets.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ describe('Presets test all', () => {

expect(mask('guilherme neves')).toBe('Guilherme Neves');
expect(mask('ça áo ést')).toBe('Ça Áo Ést');
expect(mask('mask hooks')).toBe('Mask Hooks');
expect(mask('MASK HOOKS')).toBe('Mask Hooks');

});

Expand Down

0 comments on commit 2386057

Please sign in to comment.