Files
n8n-nodes-gwezz-changdunovel/node_modules/upper-case-first/dist.es2015/index.js
2025-10-26 23:10:15 +08:00

7 lines
197 B
JavaScript

/**
* Upper case the first character of an input string.
*/
export function upperCaseFirst(input) {
return input.charAt(0).toUpperCase() + input.substr(1);
}
//# sourceMappingURL=index.js.map