Files
addon/lib/js2py/internals/constructors/jsboolean.py
Alhaziel 917f1a2c4b Revert "Test - CF per XBOX"
This reverts commit ef822e749d.
2019-12-03 18:47:48 +01:00

15 lines
323 B
Python

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