diff --git a/.internal/createCaseFirst.js b/.internal/createCaseFirst.js index d306c97f1..029097a2f 100644 --- a/.internal/createCaseFirst.js +++ b/.internal/createCaseFirst.js @@ -1,7 +1,6 @@ import castSlice from './castSlice.js' import hasUnicode from './hasUnicode.js' import stringToArray from './stringToArray.js' -import toString from '../toString.js' /** * Creates a function like `lowerFirst`. @@ -12,8 +11,6 @@ import toString from '../toString.js' */ function createCaseFirst(methodName) { return (string) => { - string = toString(string) - const strSymbols = hasUnicode(string) ? stringToArray(string) : undefined