Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101377937
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
Sun, Feb 9, 21:00
Size
1 KB
Mime Type
text/x-c++
Expires
Tue, Feb 11, 21:00 (2 d)
Engine
blob
Format
Raw Data
Handle
24147883
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