selenium
This commit is contained in:
70
node_modules/ip-regex/index.d.ts
generated
vendored
Normal file
70
node_modules/ip-regex/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
declare namespace ip {
|
||||
interface Options {
|
||||
/**
|
||||
Only match an exact string. Useful with `RegExp#test()` to check if a string is an IP address. *(`false` matches any IP address in a string)*
|
||||
|
||||
@default false
|
||||
*/
|
||||
readonly exact?: boolean;
|
||||
|
||||
/**
|
||||
Include boundaries in the regex. When `true`, `192.168.0.2000000000` will report as an invalid IPv4 address. If this option is not set, the mentioned IPv4 address would report as valid (ignoring the trailing zeros).
|
||||
|
||||
@default false
|
||||
*/
|
||||
readonly includeBoundaries?: boolean;
|
||||
}
|
||||
}
|
||||
|
||||
declare const ip: {
|
||||
/**
|
||||
Regular expression for matching IP addresses.
|
||||
|
||||
@returns A regex for matching both IPv4 and IPv6.
|
||||
|
||||
@example
|
||||
```
|
||||
import ipRegex = require('ip-regex');
|
||||
|
||||
// Contains an IP address?
|
||||
ipRegex().test('unicorn 192.168.0.1');
|
||||
//=> true
|
||||
|
||||
// Is an IP address?
|
||||
ipRegex({exact: true}).test('unicorn 192.168.0.1');
|
||||
//=> false
|
||||
|
||||
'unicorn 192.168.0.1 cake 1:2:3:4:5:6:7:8 rainbow'.match(ipRegex());
|
||||
//=> ['192.168.0.1', '1:2:3:4:5:6:7:8']
|
||||
|
||||
// Contains an IP address?
|
||||
ipRegex({includeBoundaries: true}).test('192.168.0.2000000000');
|
||||
//=> false
|
||||
|
||||
// Matches an IP address?
|
||||
'192.168.0.2000000000'.match(ipRegex({includeBoundaries: true}));
|
||||
//=> null
|
||||
```
|
||||
*/
|
||||
(options?: ip.Options): RegExp;
|
||||
|
||||
/**
|
||||
@returns A regex for matching IPv4.
|
||||
*/
|
||||
v4(options?: ip.Options): RegExp;
|
||||
|
||||
/**
|
||||
@returns A regex for matching IPv6.
|
||||
|
||||
@example
|
||||
```
|
||||
import ipRegex = require('ip-regex');
|
||||
|
||||
ipRegex.v6({exact: true}).test('1:2:3:4:5:6:7:8');
|
||||
//=> true
|
||||
```
|
||||
*/
|
||||
v6(options?: ip.Options): RegExp;
|
||||
};
|
||||
|
||||
export = ip;
|
||||
36
node_modules/ip-regex/index.js
generated
vendored
Normal file
36
node_modules/ip-regex/index.js
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
'use strict';
|
||||
|
||||
const word = '[a-fA-F\\d:]';
|
||||
const b = options => options && options.includeBoundaries ?
|
||||
`(?:(?<=\\s|^)(?=${word})|(?<=${word})(?=\\s|$))` :
|
||||
'';
|
||||
|
||||
const v4 = '(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}';
|
||||
|
||||
const v6seg = '[a-fA-F\\d]{1,4}';
|
||||
const v6 = `
|
||||
(?:
|
||||
(?:${v6seg}:){7}(?:${v6seg}|:)| // 1:2:3:4:5:6:7:: 1:2:3:4:5:6:7:8
|
||||
(?:${v6seg}:){6}(?:${v4}|:${v6seg}|:)| // 1:2:3:4:5:6:: 1:2:3:4:5:6::8 1:2:3:4:5:6::8 1:2:3:4:5:6::1.2.3.4
|
||||
(?:${v6seg}:){5}(?::${v4}|(?::${v6seg}){1,2}|:)| // 1:2:3:4:5:: 1:2:3:4:5::7:8 1:2:3:4:5::8 1:2:3:4:5::7:1.2.3.4
|
||||
(?:${v6seg}:){4}(?:(?::${v6seg}){0,1}:${v4}|(?::${v6seg}){1,3}|:)| // 1:2:3:4:: 1:2:3:4::6:7:8 1:2:3:4::8 1:2:3:4::6:7:1.2.3.4
|
||||
(?:${v6seg}:){3}(?:(?::${v6seg}){0,2}:${v4}|(?::${v6seg}){1,4}|:)| // 1:2:3:: 1:2:3::5:6:7:8 1:2:3::8 1:2:3::5:6:7:1.2.3.4
|
||||
(?:${v6seg}:){2}(?:(?::${v6seg}){0,3}:${v4}|(?::${v6seg}){1,5}|:)| // 1:2:: 1:2::4:5:6:7:8 1:2::8 1:2::4:5:6:7:1.2.3.4
|
||||
(?:${v6seg}:){1}(?:(?::${v6seg}){0,4}:${v4}|(?::${v6seg}){1,6}|:)| // 1:: 1::3:4:5:6:7:8 1::8 1::3:4:5:6:7:1.2.3.4
|
||||
(?::(?:(?::${v6seg}){0,5}:${v4}|(?::${v6seg}){1,7}|:)) // ::2:3:4:5:6:7:8 ::2:3:4:5:6:7:8 ::8 ::1.2.3.4
|
||||
)(?:%[0-9a-zA-Z]{1,})? // %eth0 %1
|
||||
`.replace(/\s*\/\/.*$/gm, '').replace(/\n/g, '').trim();
|
||||
|
||||
// Pre-compile only the exact regexes because adding a global flag make regexes stateful
|
||||
const v46Exact = new RegExp(`(?:^${v4}$)|(?:^${v6}$)`);
|
||||
const v4exact = new RegExp(`^${v4}$`);
|
||||
const v6exact = new RegExp(`^${v6}$`);
|
||||
|
||||
const ip = options => options && options.exact ?
|
||||
v46Exact :
|
||||
new RegExp(`(?:${b(options)}${v4}${b(options)})|(?:${b(options)}${v6}${b(options)})`, 'g');
|
||||
|
||||
ip.v4 = options => options && options.exact ? v4exact : new RegExp(`${b(options)}${v4}${b(options)}`, 'g');
|
||||
ip.v6 = options => options && options.exact ? v6exact : new RegExp(`${b(options)}${v6}${b(options)}`, 'g');
|
||||
|
||||
module.exports = ip;
|
||||
9
node_modules/ip-regex/license
generated
vendored
Normal file
9
node_modules/ip-regex/license
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
44
node_modules/ip-regex/package.json
generated
vendored
Normal file
44
node_modules/ip-regex/package.json
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"name": "ip-regex",
|
||||
"version": "4.3.0",
|
||||
"description": "Regular expression for matching IP addresses (IPv4 & IPv6)",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/ip-regex",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsd"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts"
|
||||
],
|
||||
"keywords": [
|
||||
"ip",
|
||||
"ipv6",
|
||||
"ipv4",
|
||||
"regex",
|
||||
"regexp",
|
||||
"re",
|
||||
"match",
|
||||
"test",
|
||||
"find",
|
||||
"text",
|
||||
"pattern",
|
||||
"internet",
|
||||
"protocol",
|
||||
"address",
|
||||
"validate"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "^1.4.1",
|
||||
"tsd": "^0.7.2",
|
||||
"xo": "^0.24.0"
|
||||
}
|
||||
}
|
||||
86
node_modules/ip-regex/readme.md
generated
vendored
Normal file
86
node_modules/ip-regex/readme.md
generated
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
# ip-regex
|
||||
|
||||
> Regular expression for matching IP addresses
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install ip-regex
|
||||
```
|
||||
|
||||
This module targets Node.js 8 or later and the latest version of Chrome, Firefox, and Safari. If you want support for older browsers, use version 2.1.0: `npm install ip-regex@2.1.0`
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const ipRegex = require('ip-regex');
|
||||
|
||||
// Contains an IP address?
|
||||
ipRegex().test('unicorn 192.168.0.1');
|
||||
//=> true
|
||||
|
||||
// Is an IP address?
|
||||
ipRegex({exact: true}).test('unicorn 192.168.0.1');
|
||||
//=> false
|
||||
|
||||
ipRegex.v6({exact: true}).test('1:2:3:4:5:6:7:8');
|
||||
//=> true
|
||||
|
||||
'unicorn 192.168.0.1 cake 1:2:3:4:5:6:7:8 rainbow'.match(ipRegex());
|
||||
//=> ['192.168.0.1', '1:2:3:4:5:6:7:8']
|
||||
|
||||
// Contains an IP address?
|
||||
ipRegex({includeBoundaries: true}).test('192.168.0.2000000000');
|
||||
//=> false
|
||||
|
||||
// Matches an IP address?
|
||||
'192.168.0.2000000000'.match(ipRegex({includeBoundaries: true}));
|
||||
//=> null
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
### ipRegex([options])
|
||||
|
||||
Returns a regex for matching both IPv4 and IPv6.
|
||||
|
||||
### ipRegex.v4([options])
|
||||
|
||||
Returns a regex for matching IPv4.
|
||||
|
||||
### ipRegex.v6([options])
|
||||
|
||||
Returns a regex for matching IPv6.
|
||||
|
||||
#### options
|
||||
|
||||
Type: `Object`
|
||||
|
||||
##### exact
|
||||
|
||||
Type: `boolean`<br>
|
||||
Default: `false` *(Matches any IP address in a string)*
|
||||
|
||||
Only match an exact string. Useful with `RegExp#test()` to check if a string is an IP address.
|
||||
|
||||
##### includeBoundaries
|
||||
|
||||
Type: `boolean`<br>
|
||||
Default: `false`
|
||||
|
||||
Include boundaries in the regex. When `true`, `192.168.0.2000000000` will report as an invalid IPv4 address. If this option is not set, the mentioned IPv4 address would report as valid (ignoring the trailing zeros).
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
- [is-ip](https://github.com/sindresorhus/is-ip) - Check if a string is an IP address
|
||||
- [is-cidr](https://github.com/silverwind/is-cidr) - Check if a string is an IP address in CIDR notation
|
||||
- [cidr-regex](https://github.com/silverwind/cidr-regex) - Regular expression for matching IP addresses in CIDR notation
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
||||
Reference in New Issue
Block a user