@@ -91,7 +91,7 @@ export const create = (<T>() => {
91
91
console .log (' zustand create mock' )
92
92
93
93
// to support curried version of create
94
- return typeof stateCreator === " function"
94
+ return typeof stateCreator === ' function'
95
95
? createUncurried (stateCreator )
96
96
: createUncurried
97
97
}) as typeof zustand .create
@@ -110,7 +110,7 @@ export const createStore = (<T>(stateCreator: zustand.StateCreator<T>) => {
110
110
console .log (' zustand createStore mock' )
111
111
112
112
// to support curried version of createStore
113
- return typeof stateCreator === " function"
113
+ return typeof stateCreator === ' function'
114
114
? createStoreUncurried (stateCreator )
115
115
: createStoreUncurried
116
116
}) as typeof zustand .createStore
@@ -180,7 +180,7 @@ export const create = (<T>() => {
180
180
console .log (' zustand create mock' )
181
181
182
182
// to support curried version of create
183
- return typeof stateCreator === " function"
183
+ return typeof stateCreator === ' function'
184
184
? createUncurried (stateCreator )
185
185
: createUncurried
186
186
}) as typeof zustand .create
@@ -199,7 +199,7 @@ export const createStore = (<T>(stateCreator: zustand.StateCreator<T>) => {
199
199
console .log (' zustand createStore mock' )
200
200
201
201
// to support curried version of createStore
202
- return typeof stateCreator === " function"
202
+ return typeof stateCreator === ' function'
203
203
? createStoreUncurried (stateCreator )
204
204
: createStoreUncurried
205
205
}) as typeof zustand .createStore
0 commit comments