UNPKG

@kirz/react-native-toolkit

Version:

Toolkit to speed up React Native development

13 lines (12 loc) 272 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.capitalize = capitalize; function capitalize(word) { if (!word) { return word; } return word.charAt(0).toUpperCase() + word.slice(1); } //# sourceMappingURL=capitalize.js.map