⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
astral-regex
/
View File Name :
index.d.ts
declare namespace astralRegex { interface Options { /** Only match an exact string. Useful with `RegExp#test()` to check if a string is a astral symbol. Default: `false` _(Matches any astral symbols in a string)_ */ readonly exact?: boolean; } } /** Regular expression for matching [astral symbols](https://everything2.com/title/astral+plane). @returns A `RegExp` for matching astral symbols. @example ``` import astralRegex = require('astral-regex'); astralRegex({exact: true}).test('🦄'); //=> true 'foo 🦄 💩 bar'.match(astralRegex()); //=> ['🦄', '💩'] ``` */ declare function astralRegex(options?: astralRegex.Options): RegExp; export = astralRegex;