aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/utils/objects.js
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2020-06-27 21:59:35 +1000
committerSam Potts <sam@potts.es>2020-11-14 13:01:36 +1100
commitc3e163741fd5a4a88e56c9d425109f2014c8511f (patch)
treec1651e8b90d096a6000595d03d533a6e15ac0a0e /src/js/utils/objects.js
parent1c715bc88922e20360c7ad2d5b625cccb16247fa (diff)
downloadplyr-c3e163741fd5a4a88e56c9d425109f2014c8511f.tar.lz
plyr-c3e163741fd5a4a88e56c9d425109f2014c8511f.tar.xz
plyr-c3e163741fd5a4a88e56c9d425109f2014c8511f.zip
Linting changes
Diffstat (limited to 'src/js/utils/objects.js')
-rw-r--r--src/js/utils/objects.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/utils/objects.js b/src/js/utils/objects.js
index a327e488..d64002ae 100644
--- a/src/js/utils/objects.js
+++ b/src/js/utils/objects.js
@@ -26,7 +26,7 @@ export function extend(target = {}, ...sources) {
return target;
}
- Object.keys(source).forEach(key => {
+ Object.keys(source).forEach((key) => {
if (is.object(source[key])) {
if (!Object.keys(target).includes(key)) {
Object.assign(target, { [key]: {} });