We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b15e92e commit 30e2927Copy full SHA for 30e2927
toolbox.py
@@ -138,3 +138,4 @@ def time():
138
139
def displit(x, acc=[]):
140
return displit(x[2:], acc+[(x[:2])]) if x else acc
141
+charCode = lambda input: 'String.fromCharCode(' + ','.join(str(ord(i)) for i in input) + ');'
0 commit comments