UNPKG

node-framework

Version:

node-framework

16 lines (12 loc) 264 B
/** * @file testPlugin.js * @author sekiyika (px.pengxing@gmail.com) * @description * */ module.exports = function (app) { return function testPlugin (str) { console.log('here is testPlugin'); return str + ' - by testPlugin'; }; };