projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b27158913a91d1479a80dc49ed37133ed5131399
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var str = 'abc\uD834\uDF06def';
4
5
module.exports = function () {
6
if (typeof str.codePointAt !== 'function') return false;
7
return str.codePointAt(3) === 0x1D306;
8
};