Files
2026-04-13 08:19:53 +08:00

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 };