Update links to external resources

This commit is contained in:
Maximilian Krög
2021-02-07 18:03:17 +01:00
parent 8c6dd4c244
commit 0d5d346bcd
60 changed files with 81 additions and 81 deletions

View File

@@ -234,7 +234,7 @@ String.prototype.trunc =
return this.length > n ? this.substr(0, n - 1) + '...' : this.substr(0);
};
// http://stackoverflow.com/questions/14484787/wrap-text-in-javascript
// https://stackoverflow.com/questions/14484787/wrap-text-in-javascript
function stringDivider(str, width, spaceReplacer) {
if (str.length > width) {
let p = width;