summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext/test/function/#/partial.js
blob: bd00ce752f520208aa7673076b414d16b16e73a1 (plain)
1
2
3
4
5
6
7
8
9
'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]);
};