Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 'use strict';
- const regex = '[\uD800-\uDBFF][\uDC00-\uDFFF]';
-
- const astralRegex = options => options && options.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, 'g');
-
- module.exports = astralRegex;
|