UNPKG
mof-whacko
Version:
latest (0.0.1)
0.0.1
A middleware wrapped whacko module for floodesh
mof-whacko
/
index.js
13 lines
(9 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict"
const
whacko =
require
(
'whacko'
)
module
.
exports
=
function
(
){
return
function
(
ctx,next
){
if
(ctx.
type
===
'text/html'
) ctx.
$
= whacko.
load
(ctx.
content
);
return
next
(); } }