@amimpact/willy-utils 1.8.5 → 1.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/url.js +1 -1
- package/package.json +1 -1
package/dist/url.js
CHANGED
|
@@ -73,7 +73,7 @@ var isDifferentProtocolLink = function (url) {
|
|
|
73
73
|
if (!url) {
|
|
74
74
|
return false;
|
|
75
75
|
}
|
|
76
|
-
var DEFAULT_PROTOCOLS = ['mailto', 'tel', 'rdp'];
|
|
76
|
+
var DEFAULT_PROTOCOLS = ['mailto', 'tel', 'rdp', 'ms-rd'];
|
|
77
77
|
return DEFAULT_PROTOCOLS.findIndex(function (p) { return url.startsWith("".concat(p, ":")); }) > -1;
|
|
78
78
|
};
|
|
79
79
|
/**
|