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
/
has-test-hook.js
11 lines
(9 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// This plugin has a hook property 'test' that just has the value `true`.
module
.
exports
= {
name
:
"has-test-hook"
,
init
:
function
(
) {
return
{
test
:
true
}; } };