UNPKG

@amberjs/cli

Version:

Amber.js command line interface

5 lines (3 loc) 196 B
const firstToUpper = (str) => str.replace(/^./, (f) => f.toUpperCase()); const firstToLower = (str) => str.replace(/^./, (f) => f.toLowerCase()); module.exports = { firstToLower, firstToUpper };