From 73bb3a7d9d5918e53c0d58f1691c5e685710c8db Mon Sep 17 00:00:00 2001 From: barisx <106313165+barisx@users.noreply.github.com> Date: Mon, 22 Aug 2022 22:13:00 +0300 Subject: [PATCH] change function name to more understandable one --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 47916b4..396977e 100644 --- a/index.js +++ b/index.js @@ -51,7 +51,7 @@ module.exports = function(filename, newFirstLine, cb) { }) } -function generateRando(len) { +function generateRandomText(len) { if (typeof len != "number") len = 12 var text = ""; var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";