Skip to content

Commit 0af5350

Browse files
committed
update js libs
1 parent c2439e9 commit 0af5350

File tree

4 files changed

+214
-142
lines changed

4 files changed

+214
-142
lines changed

MyApp/wwwroot/lib/mjs/servicestack-client.min.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

MyApp/wwwroot/lib/mjs/servicestack-client.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1361,7 +1361,11 @@ export function splitTitleCase(s) {
13611361
to.push(s.substring(lastSplit, s.length));
13621362
return to.filter(x => !!x);
13631363
}
1364-
export function humanify(s) { return !s || s.indexOf(' ') >= 0 ? s : ucFirst(splitTitleCase(s).join(' ')); }
1364+
export function humanify(s) {
1365+
return !s || indexOfAny(s, [' ', ',', '.', ':', '-']) >= 0
1366+
? s
1367+
: ucFirst(splitTitleCase(s).join(' '));
1368+
}
13651369
export function queryString(url) {
13661370
if (!url || url.indexOf('?') === -1)
13671371
return {};

MyApp/wwwroot/lib/mjs/vue.min.mjs

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)