usenetbinary-newsreaderseedboxtvdbnzbgetsubtitlewebuiquickboxtraktkodistabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinemby
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.
14 lines
323 B
14 lines
323 B
from ..conversions import *
|
|
from ..func_utils import *
|
|
|
|
|
|
def Boolean(this, args):
|
|
return to_boolean(get_arg(args, 0))
|
|
|
|
|
|
def BooleanConstructor(args, space):
|
|
temp = space.NewObject()
|
|
temp.prototype = space.BooleanPrototype
|
|
temp.Class = 'Boolean'
|
|
temp.value = to_boolean(get_arg(args, 0))
|
|
return temp
|
|
|