From 983c7792287272bc0a25190f9c867c162ef64a19 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sat, 19 Dec 2020 02:47:35 -0500 Subject: [PATCH] Correct missing import, oops --- helper_functions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helper_functions.js b/helper_functions.js index 5249d41..cd225d2 100644 --- a/helper_functions.js +++ b/helper_functions.js @@ -2,11 +2,12 @@ * Various helper functions to make JavaScript development easier. * * https://git.brandon-rodriguez.com/javascript/helper_functions - * Version 1.0 + * Version 1.1 */ // System Imports. const chalk = require('chalk'); + const readline = require('readline-sync'); /** -- GitLab