Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100978501
ImportMetaHotAcceptDependency.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 4, 11:48
Size
805 B
Mime Type
text/x-c++
Expires
Thu, Feb 6, 11:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24062144
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
ImportMetaHotAcceptDependency.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Ivan Kopeykin @vankop
*/
"use strict"
;
const
makeSerializable
=
require
(
"../util/makeSerializable"
);
const
ModuleDependency
=
require
(
"./ModuleDependency"
);
const
ModuleDependencyTemplateAsId
=
require
(
"./ModuleDependencyTemplateAsId"
);
class
ImportMetaHotAcceptDependency
extends
ModuleDependency
{
constructor
(
request
,
range
)
{
super
(
request
);
this
.
range
=
range
;
this
.
weak
=
true
;
}
get
type
()
{
return
"import.meta.webpackHot.accept"
;
}
get
category
()
{
return
"esm"
;
}
}
makeSerializable
(
ImportMetaHotAcceptDependency
,
"webpack/lib/dependencies/ImportMetaHotAcceptDependency"
);
ImportMetaHotAcceptDependency
.
Template
=
ModuleDependencyTemplateAsId
;
module
.
exports
=
ImportMetaHotAcceptDependency
;
Event Timeline
Log In to Comment