UNPKG

microcms_sdk_generator

Version:
9 lines (8 loc) 214 B
import lowerCase from "./lowerCase.js"; export default function (str, locale) { if (str == null) { return ""; } str = String(str); return lowerCase(str.charAt(0), locale) + str.substr(1); }