Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104400741
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, Mar 9, 03:20
Size
871 B
Mime Type
text/x-c++
Expires
Tue, Mar 11, 03:20 (1 d, 11 h)
Engine
blob
Format
Raw Data
Handle
24791139
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