]> git.r.bdr.sh - rbdr/dotfiles/blob
b27158913a91d1479a80dc49ed37133ed5131399
[rbdr/dotfiles] /
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 };