Skip to content

Commit

Permalink
remove fn params
Browse files Browse the repository at this point in the history
  • Loading branch information
aheckmann committed Oct 2, 2012
1 parent f15d84c commit 07f923f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/sliced.js
Expand Up @@ -8,7 +8,11 @@
* @api public
*/

module.exports = function (args, slice, sliceEnd) {
module.exports = function () {
var args = arguments[0];
var slice = arguments[1];
var sliceEnd = arguments[2];

var ret = [];
var len = args.length;

Expand Down

0 comments on commit 07f923f

Please sign in to comment.