mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 23:12:24 -05:00
*facepalm*
This commit is contained in:
parent
28e61dbf48
commit
884e24f782
1 changed files with 3 additions and 3 deletions
|
@ -110,9 +110,9 @@ class Scratch3OperatorsBlocks {
|
||||||
|
|
||||||
contains (args) {
|
contains (args) {
|
||||||
const format = function (string) {
|
const format = function (string) {
|
||||||
return Cast.toString(string).toLowerCase()
|
return Cast.toString(string).toLowerCase();
|
||||||
}
|
};
|
||||||
return format(args.STRING1).includes(format(args.STRING2))
|
return format(args.STRING1).includes(format(args.STRING2));
|
||||||
}
|
}
|
||||||
|
|
||||||
mod (args) {
|
mod (args) {
|
||||||
|
|
Loading…
Reference in a new issue