UNPKG

slush-markoa

Version:
14 lines (12 loc) 207 B
/*jslint node: true */ 'use strict'; module.exports = { post: function*(next) { console.log('POST'); yield next; }, update: function*(next) { console.log('UPDATE'); yield next; } };