Skip to content

Commit

Permalink
Release v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rudashi committed Jan 28, 2023
1 parent 4f51b69 commit e06ac34
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [1.3.0](https://github.com/rudashi/stringable/compare/v1.2.9...v1.3.0) (2023-01-28)

### Feature
* Add `whenIsUlid` method

## [1.2.9](https://github.com/rudashi/stringable/compare/v1.2.8...v1.2.9) (2022-10-15)

### Feature
Expand Down
8 changes: 8 additions & 0 deletions dist/Stringable.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/Stringable.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stringable-laravel",
"version": "1.2.9",
"version": "1.3.0",
"description": "Javascript Version's of Laravel's Illuminate\\Support\\Str",
"main": "dist/index.js",
"types": "types/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions types/Stringable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export declare class Stringable {
whenNotExactly: (value: string, callback: Closure, defaultValue?: Closure) => this;
whenIs: (pattern: string | Array<string>, callback: Closure, defaultValue?: Closure) => this;
whenIsAscii: (callback: Closure, defaultValue?: Closure) => this;
whenIsUlid: (callback: Closure, defaultValue?: Closure) => this;
whenIsUuid: (callback: Closure, defaultValue?: Closure) => this;
whenTest: (pattern: RegExp | string, callback: Closure, defaultValue?: Closure) => this;
wordCount: () => number;
Expand Down

0 comments on commit e06ac34

Please sign in to comment.