Update to pass Travis build

main
Julien 5 years ago committed by GitHub
parent d09a87b814
commit 44471cfb34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,7 +19,9 @@
.split('.') .split('.')
.reduce( .reduce(
(value, method) => (value, method) =>
value && value instanceof Object && value.hasOwnProperty(method) value &&
value instanceof Object &&
value.hasOwnProperty(method)
? value[method] ? value[method]
: undefined, : undefined,
window window