Skip to content

Commit

Permalink
v3.4.25
Browse files Browse the repository at this point in the history
  • Loading branch information
kujirahand committed Dec 30, 2023
1 parent d83bffd commit c6cc7ee
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion core
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nadesiko3",
"version": "3.4.24",
"version": "3.4.25",
"description": "Japanese Programming Language",
"type": "module",
"main": "src/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/nako_version.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface NakoVersion {
}
// 実際のバージョン定義 (自動生成されるので以下を編集しない)
const nakoVersion: NakoVersion = {
version: '3.4.24',
version: '3.4.25',
major: 3,
minor: 4,
patch: 24
patch: 25
}
export default nakoVersion
24 changes: 12 additions & 12 deletions src/plugin_browser_ajax.mts
Original file line number Diff line number Diff line change
Expand Up @@ -315,18 +315,18 @@ export default {
if (type === 'TEXT' || type === 'テキスト') {
return res.text()
} else
if (type === 'JSON') {
return res.json()
} else
if (type === 'BLOB') {
return res.blob()
} else
if (type === 'ARRAY' || type === '配列') {
return res.arrayBuffer()
} else
if (type === 'BODY' || type === '本体') {
return res.body
}
if (type === 'JSON') {
return res.json()
} else
if (type === 'BLOB') {
return res.blob()
} else
if (type === 'ARRAY' || type === '配列') {
return res.arrayBuffer()
} else
if (type === 'BODY' || type === '本体') {
return res.body
}
return res.body()
},
return_none: false
Expand Down
24 changes: 12 additions & 12 deletions src/plugin_node.mts
Original file line number Diff line number Diff line change
Expand Up @@ -981,18 +981,18 @@ export default {
if (type === 'TEXT' || type === 'テキスト') {
return res.text()
} else
if (type === 'JSON') {
return res.json()
} else
if (type === 'BLOB') {
return res.blob()
} else
if (type === 'ARRAY' || type === '配列') {
return res.arrayBuffer()
} else
if (type === 'BODY' || type === '本体') {
return res.body
}
if (type === 'JSON') {
return res.json()
} else
if (type === 'BLOB') {
return res.blob()
} else
if (type === 'ARRAY' || type === '配列') {
return res.arrayBuffer()
} else
if (type === 'BODY' || type === '本体') {
return res.body
}
return res.body()
},
return_none: false
Expand Down

0 comments on commit c6cc7ee

Please sign in to comment.