export let capitalize = str => str.charAt(0).toUpperCase() + str.slice(1)