trezy/transform-string-case

View on GitHub
src/lowercaseFirstCharacter.js

Summary

Maintainability
A
0 mins
Test Coverage
import { transformFirstCharacter as tfc } from './transformFirstCharacter'





const lowercaseFirstCharacter = string => tfc(string, str => str.toLowerCase())





export { lowercaseFirstCharacter }