(var_args)
| 344 | /* eslint-disable */ |
| 345 | |
| 346 | function debugLog(var_args) { |
| 347 | if (/swg.debug=1/.test(self.location.hash)) { |
| 348 | const logArgs = Array.prototype.slice.call(arguments, 0); |
| 349 | logArgs.unshift('[Subscriptions]'); |
| 350 | log.apply(log, logArgs); |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | /** |
| 355 | * @param {...*} var_args [description] |