zordius/webtasks

View on GitHub
page/sample.js

Summary

Maintainability
A
0 mins
Test Coverage
/*jslint node: true */
'use strict';

module.exports = function () {
    return this.task({
        title: this.query('id').pipe(this.data('getProduct')).pick('title'),
        headerGroup: ['fake header'],
        bodyGroup: ['This is a test~~']
    });
};