Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99339593
objectWithoutProperties.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
Thu, Jan 23, 15:39
Size
657 B
Mime Type
text/x-java
Expires
Sat, Jan 25, 15:39 (2 d)
Engine
blob
Format
Raw Data
Handle
23776040
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
objectWithoutProperties.js
View Options
import
objectWithoutPropertiesLoose
from
"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"
;
export
default
function
_objectWithoutProperties
(
source
,
excluded
)
{
if
(
source
==
null
)
return
{};
var
target
=
objectWithoutPropertiesLoose
(
source
,
excluded
);
var
key
,
i
;
if
(
Object
.
getOwnPropertySymbols
)
{
var
sourceSymbolKeys
=
Object
.
getOwnPropertySymbols
(
source
);
for
(
i
=
0
;
i
<
sourceSymbolKeys
.
length
;
i
++
)
{
key
=
sourceSymbolKeys
[
i
];
if
(
excluded
.
indexOf
(
key
)
>=
0
)
continue
;
if
(
!
Object
.
prototype
.
propertyIsEnumerable
.
call
(
source
,
key
))
continue
;
target
[
key
]
=
source
[
key
];
}
}
return
target
;
}
Event Timeline
Log In to Comment