]> git.r.bdr.sh - rbdr/dotfiles/blob
bd00ce752f520208aa7673076b414d16b16e73a1
[rbdr/dotfiles] /
1 'use strict';
2
3 var toArray = require('../../../array/to-array')
4
5 , f = function () { return toArray(arguments); };
6
7 module.exports = function (t, a) {
8 a.deep(t.call(f, 1)(2, 3), [1, 2, 3]);
9 };