UNPKG
tennu-plugins
Version:
beta (4.0.0-b4)
latest (4.0.0-b4)
4.0.0-b4
4.0.0-b3
4.0.0-b2
4.0.0-b1
3.2.0
3.1.0
3.0.1
3.0.0
Tennu plugin subsystem
github.com/Tennu/tennu-plugins
Tennu/tennu-plugins
tennu-plugins
/
examples
/
exports-true.js
11 lines
(9 loc)
•
180 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// This plugin just exports the value "true".
module
.
exports
= { name:
"exports-true"
, init: function () {
return
{
exports
:
true
}; }, };