mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
14 lines
281 B
JavaScript
14 lines
281 B
JavaScript
/*
|
|
* Misc functions
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
/*
|
|
* return true/false if the given string contains non-BMP chars
|
|
*/
|
|
exports.containsNonBmpChars = function utilContainsNonBmpChars(str) {
|
|
// check for first (high) surrogate in a non-BMP character
|
|
return /[\uD800-\uDBFF]/.test(str)
|
|
}
|