Rename all non-snake-case JS/TS files

[MAILPOET-4938]
This commit is contained in:
Jan Jakes
2023-09-26 09:40:42 +02:00
committed by Aschepikov
parent d058549851
commit c8fc6bf49a
685 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
import { curry } from 'lodash';
export const setLowercaseValue = curry(
(setter: (value: string) => void, value: string) => {
setter(value.toLowerCase());
},
);