9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
import { lowerFirst as lowerFirst$1 } from '../../string/lowerFirst.mjs';
|
|
import { toString } from '../util/toString.mjs';
|
|
|
|
function lowerFirst(str) {
|
|
return lowerFirst$1(toString(str));
|
|
}
|
|
|
|
export { lowerFirst };
|