This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/upper-case-first/dist.es2015/index.js

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