Добавить API и АПИ от 2019-08-15

This commit is contained in:
2019-09-05 11:41:36 +03:00
commit dd2d41cc9e
3 changed files with 201 additions and 0 deletions

10
api/2019-08-15.js Normal file
View File

@@ -0,0 +1,10 @@
// Subscribe several functions in a single call.
Reporter.prototype.subscribeMany = function(funcs)
{
for (var i = 0; i < funcs.length; ++i)
{
var func = funcs[i];
this.subscribe(func);
}
}