Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utilities.ts « src « vue « CustomDimensions « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da63326b3d89b460d1a01d7a5ff5efeba432b145 (plain)
1
2
3
4
5
6
7
8
9
10
/*!
 * Matomo - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

export function ucfirst(s: string): string {
  return `${s[0].toUpperCase()}${s.slice(1)}`;
}