Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
712 B
17 lines
712 B
// Console-polyfill. MIT license. |
|
// https://github.com/paulmillr/console-polyfill |
|
// Make it safe to do console.log() always. |
|
(function (con) { |
|
'use strict'; |
|
var prop, method; |
|
var empty = {}; |
|
var dummy = function() {}; |
|
var properties = 'memory'.split(','); |
|
var methods = ('assert,count,debug,dir,dirxml,error,exception,group,' + |
|
'groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,' + |
|
'time,timeEnd,trace,warn').split(','); |
|
while (prop = properties.pop()) con[prop] = con[prop] || empty; |
|
while (method = methods.pop()) con[method] = con[method] || dummy; |
|
})(this.console = this.console || {}); |
|
|
|
// For Workers compatibility `window` object is replaced with `this` keyword
|