chore: make typ a local

dev
TorchedSammy 2021-12-04 17:54:04 -04:00
parent 284d4e01a3
commit dedb8cbf76
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ local lunacolors = require 'lunacolors'
local ansikit = {}
ansikit.clear = function(scrollback)
typ = (scrollback and 3 or 2)
local typ = (scrollback and 3 or 2)
return ansikit.printCSI(typ, 'J')
end