Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99446020
merge.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
Fri, Jan 24, 15:32
Size
225 B
Mime Type
text/x-java
Expires
Sun, Jan 26, 15:32 (2 d)
Engine
blob
Format
Raw Data
Handle
23797477
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
merge.js
View Options
import { deepmerge } from '@mui/utils';
function merge(acc, item) {
if (!item) {
return acc;
}
return deepmerge(acc, item, {
clone: false // No need to clone deep, it's way faster.
});
}
export default merge;
Event Timeline
Log In to Comment