marko 6.0.59 → 6.0.60
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/translator/index.js +1 -1
- package/package.json +1 -1
package/dist/translator/index.js
CHANGED
@@ -5501,7 +5501,7 @@ function mergeSources(a, b) {
|
|
5501
5501
|
);
|
5502
5502
|
}
|
5503
5503
|
var bindingUtil = new Sorted(function compareBindings(a, b) {
|
5504
|
-
return a === b ? 0 : a.section.id - b.section.id || a.type !== b.type && (a.type === 0 /* dom */ || b.type === 0 /* dom */) ? a.type - b.type || a.id - b.id : a.id - b.id;
|
5504
|
+
return a === b ? 0 : a.section.id - b.section.id || (a.type !== b.type && (a.type === 0 /* dom */ || b.type === 0 /* dom */) ? a.type - b.type || a.id - b.id : a.id - b.id);
|
5505
5505
|
});
|
5506
5506
|
var propsUtil = new Sorted(function compareProps(a, b) {
|
5507
5507
|
return a < b ? -1 : a > b ? 1 : 0;
|