You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Read the controllers.json as string rather than Buffer
Buffers can implicitly be converted to string (implicitly using `utf8`
as encoding) but the type checker does not like this kind of implicit
conversion.
When passing an encoding to `fs.readFileSync`, it returns a string by
performing an explicit conversion using the provided encoding.
0 commit comments