From d7199f906ccf909b9d6a8749b63266764e7cf277 Mon Sep 17 00:00:00 2001 From: Harunobu Ishii Date: Wed, 29 May 2024 18:25:27 -0400 Subject: [PATCH] resolving codacy warning --- lib/jiff-client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jiff-client.js b/lib/jiff-client.js index a0993ca9d..dbe08741c 100644 --- a/lib/jiff-client.js +++ b/lib/jiff-client.js @@ -158,7 +158,7 @@ function JIFFClient(hostname, computation_id, options) { */ this.helpers = {}; Object.getOwnPropertyNames(Helpers.prototype).forEach((method) => { - this.helpers[method] = Helpers.prototype[method]; + this.helpers[String(method)] = Helpers.prototype[String(method)]; }); /**