usenetbinary-newsreaderquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebui
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.
12 lines
264 B
12 lines
264 B
7 years ago
|
from __future__ import unicode_literals
|
||
|
|
||
|
from js2py.internals.conversions import *
|
||
|
from js2py.internals.func_utils import *
|
||
|
|
||
|
|
||
|
class ConsoleMethods:
|
||
|
def log(this, args):
|
||
|
x = ' '.join(to_string(e) for e in args)
|
||
|
print(x)
|
||
|
return undefined
|