mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 18:52:50 +00:00
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
'use strict';
|
|
|
|
var toArray = require('../../../array/to-array')
|
|
|
|
, f = function () { return toArray(arguments); };
|
|
|
|
module.exports = function (t, a) {
|
|
a.deep(t.call(f, 1)(2, 3), [1, 2, 3]);
|
|
};
|