Closed
Bug 888093
Opened 11 years ago
Closed 11 years ago
Implement ES6 String.fromCodePoint, String.prototype.codePointAt, and String.prototype.normalize
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
DUPLICATE
of bug 918879
People
(Reporter: bbenvie, Unassigned)
References
(Blocks 1 open bug)
Details
From ES6 spec (May 2013 revision):
* String.fromCodePoint(...codePoints) - section 15.5.3.3
UTF-16 version of `String.fromCharCode`. [1]
* String.prototype.codePointAt(pos) - section 15.5.4.25
UTF-16 version of `String.prototype.charCodeAt`. [1]
* String.prototype.normalize(form = "NFC") - section 15.5.4.26
Returns a Unicode normalization form of the string. [2]
[1] https://mail.mozilla.org/pipermail/es-discuss/2012-July/024207.html (search for "codePoint")
[2] https://github.com/rwldrn/tc39-notes/blob/master/es6/2012-11/nov-27.md#string-normalization
Updated•11 years ago
|
Keywords: dev-doc-needed
Comment 1•11 years ago
|
||
Sorry, forgot to search for this bug. However my bug has a patch.
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → DUPLICATE
Comment 2•11 years ago
|
||
(In reply to Tom Schuster [:evilpie] from comment #1)
> *** This bug has been marked as a duplicate of bug 918879 ***
So should we file a new bug for `String.prototype.normalize` (or re-open this one) or will you add it to your patch?
Comment 3•11 years ago
|
||
I’ve filed up a new, separate ticket for `String.prototype.normalize`. See bug 919132.
Updated•11 years ago
|
Keywords: dev-doc-needed
You need to log in
before you can comment on or make changes to this bug.
Description
•