refactor(server/utils): get rid of isString

let's use typeof x === "string" → works exactly the same and at the same speed as this custom isString fn
This commit is contained in:
Panagiotis Papadopoulos
2025-01-29 19:39:26 +01:00
parent 41c96fb202
commit 92123e1761
3 changed files with 2 additions and 9 deletions

View File

@@ -143,8 +143,6 @@ describe.todo("#normalize", () => {});
describe.todo("#toMap", () => {});
describe.todo("#isString", () => {});
describe("#envToBoolean", () => {
const testCases: TestCase<typeof utils.envToBoolean>[] = [
["w/ 'true' it should return boolean 'true'", ["true"], true],