actually import lodash-es

This commit is contained in:
Henry Jameson 2026-09-03 13:20:24 +03:00
commit 3cc8402e01
67 changed files with 67 additions and 67 deletions

View file

@ -1,4 +1,4 @@
import { find, reduce } from 'lodash'
import { find, reduce } from 'lodash-es'
export const replaceWord = (str, toReplace, replacement) => {
return str.slice(0, toReplace.start) + replacement + str.slice(toReplace.end)