Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101993654
AMDRuntimeModules.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
Sat, Feb 15, 23:26
Size
1 KB
Mime Type
text/x-c++
Expires
Mon, Feb 17, 23:26 (2 d)
Engine
blob
Format
Raw Data
Handle
24227826
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
AMDRuntimeModules.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict"
;
const
RuntimeGlobals
=
require
(
"../RuntimeGlobals"
);
const
RuntimeModule
=
require
(
"../RuntimeModule"
);
const
Template
=
require
(
"../Template"
);
class
AMDDefineRuntimeModule
extends
RuntimeModule
{
constructor
()
{
super
(
"amd define"
);
}
/**
* @returns {string} runtime code
*/
generate
()
{
return
Template
.
asString
([
`
$
{
RuntimeGlobals
.
amdDefine
}
=
function
()
{
`
,
Template
.
indent
(
"throw new Error('define cannot be used indirect');"
),
"};"
]);
}
}
class
AMDOptionsRuntimeModule
extends
RuntimeModule
{
/**
* @param {Record<string, boolean | number | string>} options the AMD options
*/
constructor
(
options
)
{
super
(
"amd options"
);
this
.
options
=
options
;
}
/**
* @returns {string} runtime code
*/
generate
()
{
return
Template
.
asString
([
`
$
{
RuntimeGlobals
.
amdOptions
}
=
$
{
JSON
.
stringify
(
this
.
options
)};
`
]);
}
}
exports
.
AMDDefineRuntimeModule
=
AMDDefineRuntimeModule
;
exports
.
AMDOptionsRuntimeModule
=
AMDOptionsRuntimeModule
;
Event Timeline
Log In to Comment