Skip to content

Commit

Permalink
『論理NOT』の戻り値が1と0になる問題を修正 #1936
Browse files Browse the repository at this point in the history
  • Loading branch information
kujirahand committed Feb 14, 2025
1 parent ea9f8f6 commit a85b592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugin_system.mts
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ export default {
josi: [['の']],
pure: true,
fn: function (v: any): number {
return (!v) ? 1 : 0
return (!v) ? true : false
}
},

Expand Down

0 comments on commit a85b592

Please sign in to comment.