From 9b862b78b580b0acf4ae47062ff58d5096dc449c Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Fri, 25 Oct 2024 10:04:13 -0700 Subject: [PATCH] chore: Remove code from index now redundant with tests --- src/index.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/index.ts b/src/index.ts index ea91cff..606cb1c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,8 +1,3 @@ import math from './math5' console.log('The math module:', math) - -console.log(math.typeOf(17)) -console.log(math.typeOf({re: 3.4, im: -0.1})) -console.log(math.typeOf({re: {re: 1, im: 0}, im: {re: 0, im: -1}})) -console.log(math.typeOf('no string type yet'))