main
Last change
on this file since 0c6b92a was d565449, checked in by stefan toskovski <stefantoska84@…>, 3 months ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
203 bytes
|
Rev | Line | |
---|
[d565449] | 1 | "use strict";
|
---|
| 2 |
|
---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
---|
| 4 | value: true
|
---|
| 5 | });
|
---|
| 6 | exports.default = capitalizeString;
|
---|
| 7 | function capitalizeString(str) {
|
---|
| 8 | return str.charAt(0).toUpperCase() + str.slice(1);
|
---|
| 9 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.