UNPKG

flow-immutable-models

Version:

Generates model classes from Flow types using Immutable.js

6 lines (4 loc) 113 B
// @flow export default function capitalize(str: string) { return `${str[0].toUpperCase()}${str.slice(1)}`; }