Skip to content

Commit ea54859

Browse files
committed
new website
1 parent 02e56fe commit ea54859

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Usage 🚀
3131
```Javascript
3232
var defangjs = require('defangjs');
3333

34-
var url = 'https://www.edoardoottavianelli.it/index.html';
34+
var url = 'https://edoardottt.com/index.html';
3535
console.log(defangjs.Url(url));
3636
// hxxps[://]www[.]edoardoottavianelli[.]it/index.html
3737

@@ -71,4 +71,4 @@ License 📝
7171
-------
7272

7373
This repository is under [GNU General Public License v3.0](https://github.com/edoardottt/defangjs/blob/main/LICENSE).
74-
[edoardoottavianelli.it](https://www.edoardoottavianelli.it) to contact me.
74+
[edoardottt.com](https://edoardottt.com) to contact me.

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defangjs v1.0.7
44
55
@Repository: https://github.com/edoardottt/defangjs
66
7-
@Author: edoardottt, https://www.edoardoottavianelli.it
7+
@Author: edoardottt, https://edoardottt.com
88
99
@License: https://github.com/edoardottt/defangjs/blob/main/LICENSE
1010

test.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defangjs v1.0.7
44
55
@Repository: https://github.com/edoardottt/defangjs
66
7-
@Author: edoardottt, https://www.edoardoottavianelli.it
7+
@Author: edoardottt, https://edoardottt.com
88
99
@License: https://github.com/edoardottt/defangjs/blob/main/LICENSE
1010
@@ -17,39 +17,39 @@ var defangjs = require('./index.js');
1717

1818
console.log("[ HTTPS:// ]: " + defangjs.Url("https://github.com/edoardottt/defangjs") + "\n");
1919

20-
console.log("[ HTTPS:// ]: " + defangjs.Url("https://www.edoardoottavianelli.it") + "\n");
20+
console.log("[ HTTPS:// ]: " + defangjs.Url("https://edoardottt.com") + "\n");
2121

2222
console.log("[ HTTPS:// ]: " + defangjs.Url("https://very.bad.url.com:666/") + "\n");
2323

2424
console.log("[ HTTP:// ]: " + defangjs.Url("http://github.com/edoardottt/defangjs") + "\n");
2525

26-
console.log("[ HTTP:// ]: " + defangjs.Url("http://www.edoardoottavianelli.it") + "\n");
26+
console.log("[ HTTP:// ]: " + defangjs.Url("http://edoardottt.com") + "\n");
2727

2828
console.log("[ HTTP:// ]: " + defangjs.Url("http://very.bad.url.com:666/") + "\n");
2929

3030
console.log("[ FTP:// ]: " + defangjs.Url("ftp://github.com/edoardottt/defangjs") + "\n");
3131

32-
console.log("[ FTP:// ]: " + defangjs.Url("ftp://www.edoardoottavianelli.it") + "\n");
32+
console.log("[ FTP:// ]: " + defangjs.Url("ftp://edoardottt.com") + "\n");
3333

3434
console.log("[ FTP:// ]: " + defangjs.Url("ftp://very.bad.url.com:666/") + "\n");
3535

3636
console.log("[ FILE:// ]: " + defangjs.Url("file:///etc/hosts") + "\n");
3737

3838
console.log("[ :// ]: " + defangjs.Url("://github.com/edoardottt/defangjs") + "\n");
3939

40-
console.log("[ :// ]: " + defangjs.Url("://www.edoardoottavianelli.it") + "\n");
40+
console.log("[ :// ]: " + defangjs.Url("://edoardottt.com") + "\n");
4141

4242
console.log("[ :// ]: " + defangjs.Url("://very.bad.url.com:666/") + "\n");
4343

4444
console.log("[ // ]: " + defangjs.Url("//github.com/edoardottt/defangjs") + "\n");
4545

46-
console.log("[ // ]: " + defangjs.Url("//www.edoardoottavianelli.it") + "\n");
46+
console.log("[ // ]: " + defangjs.Url("//edoardottt.com") + "\n");
4747

4848
console.log("[ // ]: " + defangjs.Url("//very.bad.url.com:666/") + "\n");
4949

5050
console.log("[ NO PROTOCOL ]: " + defangjs.Url("github.com/edoardottt/defangjs") + "\n");
5151

52-
console.log("[ NO PROTOCOL ]: " + defangjs.Url("www.edoardoottavianelli.it") + "\n");
52+
console.log("[ NO PROTOCOL ]: " + defangjs.Url("edoardottt.com") + "\n");
5353

5454
console.log("[ NO PROTOCOL ]: " + defangjs.Url("very.bad.url.com:666/") + "\n");
5555

0 commit comments

Comments
 (0)