Skip to content

Commit 0fe4933

Browse files
committed
Fix 'split'
1 parent 8f818ad commit 0fe4933

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

dist/easycoder-min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/easycoder.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1908,7 +1908,7 @@ const EasyCoder_Core = {
19081908
if (compiler.nextIsSymbol()) {
19091909
const targetRecord = compiler.getSymbolRecord();
19101910
}
1911-
item = compiler.getNextValue();
1911+
item = compiler.getValue();
19121912
let on = `\n`;
19131913
if (compiler.tokenIs(`on`)) {
19141914
on = compiler.getNextValue();
@@ -8920,7 +8920,7 @@ const EasyCoder = {
89208920
}
89218921
},
89228922
};
8923-
EasyCoder.version = `240713`;
8923+
EasyCoder.version = `240914`;
89248924
EasyCoder.timestamp = Date.now();
89258925
console.log(`EasyCoder loaded; waiting for page`);
89268926

js/easycoder/Core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1908,7 +1908,7 @@ const EasyCoder_Core = {
19081908
if (compiler.nextIsSymbol()) {
19091909
const targetRecord = compiler.getSymbolRecord();
19101910
}
1911-
item = compiler.getNextValue();
1911+
item = compiler.getValue();
19121912
let on = `\n`;
19131913
if (compiler.tokenIs(`on`)) {
19141914
on = compiler.getNextValue();

js/easycoder/EasyCoder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
EasyCoder.version = `240713`;
1+
EasyCoder.version = `240914`;
22
EasyCoder.timestamp = Date.now();
33
console.log(`EasyCoder loaded; waiting for page`);
44

0 commit comments

Comments
 (0)