mirror of
https://github.com/zoriya/flood.git
synced 2025-12-22 15:15:22 +00:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
'use strict';
|
|
|
|
let stringUtil = {
|
|
capitalize: function (string) {
|
|
return string.charAt(0).toUpperCase() + string.slice(1);
|
|
}
|
|
}
|
|
|
|
module.exports = stringUtil;
|