Update ObjectUtils.js
parent
a00e1a07a0
commit
487c2375f6
|
@ -203,11 +203,11 @@ export default {
|
||||||
|
|
||||||
toFlatCase(str) {
|
toFlatCase(str) {
|
||||||
// convert snake, kebab, camel and pascal cases to flat case
|
// convert snake, kebab, camel and pascal cases to flat case
|
||||||
return this.isNotEmpty(str) ? str.replace(/(-|_)/g, '').toLowerCase() : str;
|
return this.isNotEmpty(str) && this.isString(str) ? str.replace(/(-|_)/g, '').toLowerCase() : str;
|
||||||
},
|
},
|
||||||
|
|
||||||
toCapitalCase(str) {
|
toCapitalCase(str) {
|
||||||
return this.isNotEmpty(str) ? str[0].toUpperCase() + str.slice(1) : str;
|
return this.isNotEmpty(str) && this.isString(str) ? str[0].toUpperCase() + str.slice(1) : str;
|
||||||
},
|
},
|
||||||
|
|
||||||
isEmpty(value) {
|
isEmpty(value) {
|
||||||
|
|
Loading…
Reference in New Issue