From 55f0596731bfdbd26d09f6f764a5e75f0b541f79 Mon Sep 17 00:00:00 2001 From: Cool-Katt Date: Wed, 25 Jun 2025 17:25:16 +0300 Subject: [PATCH] pleasing the CI, because I didn't think it'd be an issue and didn't double check --- exercises/practice/forth/.meta/proof.ci.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/forth/.meta/proof.ci.js b/exercises/practice/forth/.meta/proof.ci.js index b46c5586c6..b26d7d111f 100644 --- a/exercises/practice/forth/.meta/proof.ci.js +++ b/exercises/practice/forth/.meta/proof.ci.js @@ -67,7 +67,7 @@ export class Forth { performCommand(command) { if (command.arity > this.stack.length) { - if (this.stack.length == 1) { + if (this.stack.length === 1) { throw new Error('Only one value on the stack'); } throw new Error('Stack empty');