mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
7 lines
106 B
JavaScript
7 lines
106 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(s) {
|
|
return s.substr(0, 1).toUpperCase() + s.substring(1);
|
|
};
|
|
|