Rename all non-snake-case JS/TS files
[MAILPOET-4938]
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import { curry } from 'lodash';
|
||||
|
||||
export const setLowercaseValue = curry(
|
||||
(setter: (value: string) => void, value: string) => {
|
||||
setter(value.toLowerCase());
|
||||
},
|
||||
);
|
Reference in New Issue
Block a user