Skip to content

Commit

Permalink
update vue libs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Oct 7, 2024
1 parent 05c1085 commit 79daaa8
Show file tree
Hide file tree
Showing 6 changed files with 3,586 additions and 3,262 deletions.
2 changes: 1 addition & 1 deletion MyApp/wwwroot/lib/mjs/servicestack-client.min.mjs

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion MyApp/wwwroot/lib/mjs/servicestack-client.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,11 @@ export function splitTitleCase(s) {
to.push(s.substring(lastSplit, s.length));
return to.filter(x => !!x);
}
export function humanify(s) { return !s || s.indexOf(' ') >= 0 ? s : ucFirst(splitTitleCase(s).join(' ')); }
export function humanify(s) {
return !s || indexOfAny(s, [' ', ',', '.', ':', '-']) >= 0
? s
: ucFirst(splitTitleCase(s).join(' '));
}
export function queryString(url) {
if (!url || url.indexOf('?') === -1)
return {};
Expand Down
52 changes: 26 additions & 26 deletions MyApp/wwwroot/lib/mjs/servicestack-vue.min.mjs

Large diffs are not rendered by default.

Loading

0 comments on commit 79daaa8

Please sign in to comment.