Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101372456
deepmerge.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Feb 9, 19:27
Size
1 KB
Mime Type
text/x-java
Expires
Tue, Feb 11, 19:27 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24146497
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
deepmerge.js
View Options
import
_extends
from
"@babel/runtime/helpers/esm/extends"
;
import
_typeof
from
"@babel/runtime/helpers/esm/typeof"
;
export
function
isPlainObject
(
item
)
{
return
item
!==
null
&&
_typeof
(
item
)
===
'object'
&&
item
.
constructor
===
Object
;
}
function
deepClone
(
source
)
{
if
(
!
isPlainObject
(
source
))
{
return
source
;
}
var
output
=
{};
Object
.
keys
(
source
).
forEach
(
function
(
key
)
{
output
[
key
]
=
deepClone
(
source
[
key
]);
});
return
output
;
}
export
default
function
deepmerge
(
target
,
source
)
{
var
options
=
arguments
.
length
>
2
&&
arguments
[
2
]
!==
undefined
?
arguments
[
2
]
:
{
clone
:
true
};
var
output
=
options
.
clone
?
_extends
({},
target
)
:
target
;
if
(
isPlainObject
(
target
)
&&
isPlainObject
(
source
))
{
Object
.
keys
(
source
).
forEach
(
function
(
key
)
{
// Avoid prototype pollution
if
(
key
===
'__proto__'
)
{
return
;
}
if
(
isPlainObject
(
source
[
key
])
&&
key
in
target
&&
isPlainObject
(
target
[
key
]))
{
// Since `output` is a clone of `target` and we have narrowed `target` in this block we can cast to the same type.
output
[
key
]
=
deepmerge
(
target
[
key
],
source
[
key
],
options
);
}
else
if
(
options
.
clone
)
{
output
[
key
]
=
isPlainObject
(
source
[
key
])
?
deepClone
(
source
[
key
])
:
source
[
key
];
}
else
{
output
[
key
]
=
source
[
key
];
}
});
}
return
output
;
}
Event Timeline
Log In to Comment