Package: ` "xcase": "^2.0.1"` Repro ``` camelizeKeys({ Key: 'value' }) ``` Observe result: `{Key: 'value'}` Expected: `{key: 'value'}` This behavior appears to originate here: https://github.com/encharm/xcase/blob/8af0a2edd440639cb2385d2bfabb3f3ab2db9148/es5/index.js#L38 `isUpper(firstChar)` causes the method to return without modifying the key and https://github.com/encharm/xcase/blob/8af0a2edd440639cb2385d2bfabb3f3ab2db9148/es5/index.js#L43 never gets a chance to execute.