From 328514ae630270577717533ffce2475c1923ea9d Mon Sep 17 00:00:00 2001 From: Ken Date: Fri, 11 Aug 2017 01:46:26 +1200 Subject: [PATCH] =?UTF-8?q?This=20kinda=20doesn=E2=80=99t=20make=20sense,?= =?UTF-8?q?=20but=20ok?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/scratch3_operators.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/blocks/scratch3_operators.js b/src/blocks/scratch3_operators.js index 5e48a1d35..b20b5d6b9 100644 --- a/src/blocks/scratch3_operators.js +++ b/src/blocks/scratch3_operators.js @@ -109,7 +109,8 @@ class Scratch3OperatorsBlocks { } contains (args) { - return Cast.toString(args.STRING1).toLowerCase().includes(Cast.toString(args.STRING2).toLowerCase()); + return Cast.toString(args.STRING1).toLowerCase() + .includes(Cast.toString(args.STRING2).toLowerCase()); } mod (args) {