mirror of https://github.com/svaarala/duktape.git
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.
9 lines
380 B
9 lines
380 B
define: DUK_OPT_NO_NONSTD_STRING_FROMCHARCODE_32BIT
|
|
introduced: 1.2.0
|
|
tags:
|
|
- ecmascript
|
|
description: >
|
|
By default Duktape String.fromCharCode() allows 32-bit codepoints which is
|
|
non-compliant (the E5.1 specification has a ToUint16() coercion for the
|
|
codepoints) but useful because Duktape supports non-BMP strings. This
|
|
feature option restores the compliant behavior.
|
|
|