zordius/webtasks

View on GitHub
input/getSomeParams.js

Summary

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

module.exports = function () {
    return this.task({
        username: this.cookie('username')
    });
};