mirror of
https://github.com/tenrok/axios.git
synced 2026-05-21 13:24:11 +03:00
13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
var spread = require('../../lib/spread');
|
|
|
|
module.exports = {
|
|
testSpread: function (test) {
|
|
var value = 0;
|
|
spread(function (a, b) {
|
|
value = a * b;
|
|
})([5, 10]);
|
|
|
|
test.equals(value, 50);
|
|
test.done();
|
|
}
|
|
}; |