@novely/core 0.46.1 → 0.46.2
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/index.global.js +2 -4
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.global.js
CHANGED
|
@@ -1027,10 +1027,8 @@ var Novely = (() => {
|
|
|
1027
1027
|
stack[stack.length - 1] = value;
|
|
1028
1028
|
},
|
|
1029
1029
|
back() {
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
ctx.meta.goingBack = true;
|
|
1033
|
-
}
|
|
1030
|
+
stack.previous = stack.length > 1 ? stack.pop() : this.value;
|
|
1031
|
+
ctx.meta.goingBack = true;
|
|
1034
1032
|
},
|
|
1035
1033
|
push(value) {
|
|
1036
1034
|
stack.push(value);
|