UNPKG

@ehduardu/bat-framework

Version:

A simple framework for Google Apps Script

5 lines (4 loc) 154 B
const capitalize = (text: string): string => { return text.substring(0, 1).toUpperCase() + text.substring(1, text.length); } export default capitalize;