Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101493782
EntryDependency.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
Tue, Feb 11, 00:04
Size
581 B
Mime Type
text/x-c++
Expires
Thu, Feb 13, 00:04 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24146803
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
EntryDependency.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const makeSerializable = require("../util/makeSerializable");
const ModuleDependency = require("./ModuleDependency");
class EntryDependency extends ModuleDependency {
/**
* @param {string} request request path for entry
*/
constructor(request) {
super(request);
}
get type() {
return "entry";
}
get category() {
return "esm";
}
}
makeSerializable(EntryDependency, "webpack/lib/dependencies/EntryDependency");
module.exports = EntryDependency;
Event Timeline
Log In to Comment