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.
24 lines
492 B
24 lines
492 B
6 years ago
|
from ..conversions import *
|
||
|
from ..func_utils import *
|
||
|
|
||
|
|
||
|
def fromCharCode(this, args):
|
||
|
res = u''
|
||
|
for e in args:
|
||
|
res += unichr(to_uint16(e))
|
||
|
return res
|
||
|
|
||
|
|
||
|
def String(this, args):
|
||
|
if len(args) == 0:
|
||
|
return u''
|
||
|
return to_string(args[0])
|
||
|
|
||
|
|
||
|
def StringConstructor(args, space):
|
||
|
temp = space.NewObject()
|
||
|
temp.prototype = space.StringPrototype
|
||
|
temp.Class = 'String'
|
||
|
temp.value = to_string(get_arg(args, 0)) if len(args) > 0 else u''
|
||
|
return temp
|