Upgrade to Webpacker 6.0.

This commit is contained in:
evazion
2021-01-27 20:49:24 -06:00
parent 2eeee446a5
commit 90cd3293eb
20 changed files with 717 additions and 3088 deletions

View File

@@ -114,7 +114,8 @@ Utility.regexp_escape = function(string) {
}
Utility.regexp_split = function(string) {
return [...new Set(String(string === null || string === undefined ? "" : string).match(/\S+/g))];
string ??= "";
return string.match(/\S+/g) ?? [];
}
$.fn.selectEnd = function() {