Files
w4rpservices/node_modules/es5-ext/test/function/#/partial.js
2018-10-27 03:51:47 -05:00

12 lines
197 B
JavaScript
Vendored

"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]);
};