main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
419 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | export const invalidProtocolRegex = /^([^\w]*)(javascript|data|vbscript)/im;
|
---|
| 2 | export const htmlEntitiesRegex = /&#(\w+)(^\w|;)?/g;
|
---|
| 3 | export const htmlCtrlEntityRegex = /&(newline|tab);/gi;
|
---|
| 4 | export const ctrlCharactersRegex =
|
---|
| 5 | /[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim;
|
---|
| 6 | export const urlSchemeRegex = /^.+(:|:)/gim;
|
---|
| 7 | export const relativeFirstCharacters = [".", "/"];
|
---|
| 8 | export const BLANK_URL = "about:blank";
|
---|
Note:
See
TracBrowser
for help on using the repository browser.