UNPKG

374 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6function BOILERPLATE(data, feed) {
7 var param = this.getParam('param', 'no parameter');
8 if (this.isLast()) {
9 return feed.close();
10 }
11 console.log('param=', param);
12 console.log('data=', data);
13 feed.send(data);
14}
15
16exports.default = {
17 BOILERPLATE: BOILERPLATE
18};
\No newline at end of file