mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-05-07 19:29:21 +00:00
7 lines
200 B
JavaScript
7 lines
200 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]); };
|