swc/bundler/tests/.cache/deno/ed39c3dbed4105c56b0b567b0a9f5dcada1dd360.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

15 lines
297 B
TypeScript

// Loaded from https://deno.land/x/case@v2.1.0/lowerFirstCase.ts
import lowerCase from "./lowerCase.ts";
export default function (str: string, locale?: string): string {
if (str == null) {
return "";
}
str = String(str);
return lowerCase(str.charAt(0), locale) + str.substr(1);
}