Files
red_de_investigacion_front/node_modules/bootstrap-vue/esm/utils/upper-first.js
T

16 lines
315 B
JavaScript
Raw Normal View History

2020-01-14 20:43:08 -06:00
import { isString } from './inspect';
/**
* Transform the first character to uppercase
* @param {string} str
*/
var upperFirst = function upperFirst(str) {
if (!isString(str)) {
str = String(str);
}
str = str.trim();
return str.charAt(0).toUpperCase() + str.slice(1);
};
export default upperFirst;