Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121708403
entry.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, Jul 13, 08:33
Size
871 B
Mime Type
text/x-c++
Expires
Tue, Jul 15, 08:33 (2 d)
Engine
blob
Format
Raw Data
Handle
27377908
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
entry.js
View Options
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
,
{
value
:
true
});
const
utils
=
require
(
"../../utils"
);
class
EntryTransformer
{
constructor
(
_settings
)
{
this
.
_settings
=
_settings
;
}
getTransformer
()
{
return
(
entry
)
=>
this
.
_transform
(
entry
);
}
_transform
(
entry
)
{
let
filepath
=
entry
.
path
;
if
(
this
.
_settings
.
absolute
)
{
filepath
=
utils
.
path
.
makeAbsolute
(
this
.
_settings
.
cwd
,
filepath
);
filepath
=
utils
.
path
.
unixify
(
filepath
);
}
if
(
this
.
_settings
.
markDirectories
&&
entry
.
dirent
.
isDirectory
())
{
filepath
+=
'/'
;
}
if
(
!
this
.
_settings
.
objectMode
)
{
return
filepath
;
}
return
Object
.
assign
(
Object
.
assign
({},
entry
),
{
path
:
filepath
});
}
}
exports
.
default
=
EntryTransformer
;
Event Timeline
Log In to Comment