node_modules: update

This commit is contained in:
Dawid Dziurla 2020-07-25 12:21:44 +02:00
parent c4ea5b96e9
commit 7c68f31a28
No known key found for this signature in database
GPG key ID: 7B6D8368172E9B0B
30 changed files with 673 additions and 856 deletions

View file

@ -23,6 +23,10 @@ const isObject = value =>
!(value instanceof Date);
const camelCaseConvert = (input, options) => {
if (!isObject(input)) {
return input;
}
options = {
deep: false,
pascalCase: false,