Skip to content

Commit

Permalink
create new dist build
Browse files Browse the repository at this point in the history
  • Loading branch information
magynhard committed Dec 13, 2020
1 parent e36e098 commit bc8b89e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions dist/lucky-case.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
*
* The lucky javascript library to identify and convert strings from any letter case to another
*
* @version 1.0.7
* @date 2020-12-12T21:01:59.286Z
* @version 1.1.0
* @date 2020-12-13T12:50:32.957Z
* @link https://github.com/magynhard/lucky-case
* @author Matthäus J. N. Beyrle
* @copyright Matthäus J. N. Beyrle
Expand Down
6 changes: 3 additions & 3 deletions dist/lucky-case.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/lucky-case.string.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
*
* The lucky javascript library to identify and convert strings from any letter case to another
*
* @version 1.0.7
* @date 2020-12-12T21:01:59.292Z
* @version 1.1.0
* @date 2020-12-13T12:50:32.963Z
* @link https://github.com/magynhard/lucky-case
* @author Matthäus J. N. Beyrle
* @copyright Matthäus J. N. Beyrle
Expand Down Expand Up @@ -1243,7 +1243,7 @@ Object.assign(String.prototype, {
* @returns {boolean}
*/
isCamelCase(allow_prefixed_underscores = true) {
LuckyCase.isCamelCase(this, allow_prefixed_underscores);
return LuckyCase.isCamelCase(this, allow_prefixed_underscores);
}
});

Expand Down Expand Up @@ -1287,7 +1287,7 @@ Object.assign(String.prototype, {
* @returns {string}
*/
toUpperDashCase(preserve_prefixed_underscores = true) {
return LuckyCase.toUpperDashCase(preserve_prefixed_underscores);
return LuckyCase.toUpperDashCase(this, preserve_prefixed_underscores);
}
});

Expand Down Expand Up @@ -1463,7 +1463,7 @@ Object.assign(String.prototype, {
* @returns {string}
*/
capitalize(skip_prefixed_underscores = false) {
LuckyCase.capitalize(this, skip_prefixed_underscores);
return LuckyCase.capitalize(this, skip_prefixed_underscores);
}
});

Expand Down
6 changes: 3 additions & 3 deletions dist/lucky-case.string.min.js

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": "lucky-case",
"version": "1.0.8",
"version": "1.1.0",
"description": "The lucky javascript library to identify and convert strings from any letter case to another",
"exports": {
".": "./src/lucky-case/lucky-case.js",
Expand Down

0 comments on commit bc8b89e

Please sign in to comment.