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
I think you stated this in the readme, maybe instead of lodash you could use the camelcase npm module https://www.npmjs.com/package/camelcase. I think it works on normal strings just fine and many others. It is actually what I use for my gatsby plugins to camelcase data before putting it into graphql.
Lodash should work fine on simple space delineated strings (see repl example here).
I can't remember exactly, but I think part of the problem is how google sheets handles spaces in column names. e.g., it might just strip them out with no indication as to where the spaces were.
Whatever the root cause, though, it's definitely a problem, so I'll keep this open to track it
I think you stated this in the readme, maybe instead of lodash you could use the
camelcase
npm module https://www.npmjs.com/package/camelcase. I think it works on normal strings just fine and many others. It is actually what I use for my gatsby plugins to camelcase data before putting it into graphql.That should make strings like "User email" into userEmail.
The text was updated successfully, but these errors were encountered: