MCPcopy Create free account
hub / github.com/nodejs/node / BuildSurrogatePair

Function BuildSurrogatePair

deps/v8/test/mjsunit/unicodelctest.js:43–46  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

41
42
43function BuildSurrogatePair(c) {
44 return String.fromCharCode(+0xd800 + (c >> 10)) +
45 String.fromCharCode(+0xdc00 + (c & 0x3ff));
46}
47
48fuzz_index = 0;
49fuzz();

Callers 1

unicodelctest.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected