8 lines
108 B
JavaScript
8 lines
108 B
JavaScript
|
module.exports = {
|
||
|
methods: {
|
||
|
uFirst: (text) => {
|
||
|
return text;
|
||
|
},
|
||
|
},
|
||
|
};
|