UNPKG

phaser4-rex-plugins

Version:
9 lines (7 loc) 162 B
var Sum = function () { return Array.prototype.reduce.call(arguments, Add, 0); } var Add = function (a, b) { return a + b; } export default Sum;