@krx3d/tizentube2 1.13.30 → 1.13.760
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/service.js +2 -0
- package/dist/userScript.js +2 -14
- package/package.json +1 -1
- package/tizen.log +0 -0
package/dist/service.js
CHANGED
|
@@ -38819,6 +38819,7 @@ function pathToRegexp(path, keys, options) {
|
|
|
38819
38819
|
}
|
|
38820
38820
|
pos = offset + match.length;
|
|
38821
38821
|
if (match === '*') {
|
|
38822
|
+
backtrack = '';
|
|
38822
38823
|
extraOffset += 3;
|
|
38823
38824
|
return '(.*)';
|
|
38824
38825
|
}
|
|
@@ -38839,6 +38840,7 @@ function pathToRegexp(path, keys, options) {
|
|
|
38839
38840
|
offset: offset + extraOffset
|
|
38840
38841
|
});
|
|
38841
38842
|
var result = '(?:' + format + slash + capture + (star ? '((?:[/' + format + '].+?)?)' : '') + ')' + optional;
|
|
38843
|
+
backtrack = '';
|
|
38842
38844
|
extraOffset += result.length - match.length;
|
|
38843
38845
|
return result;
|
|
38844
38846
|
});
|