util.array: Add type() local

This commit is contained in:
Kim Alvefur 2014-09-17 14:50:44 +02:00
parent cd0acc10f7
commit e9fa1d1db3

View file

@ -14,6 +14,7 @@ local math_random = math.random;
local math_floor = math.floor;
local pairs, ipairs = pairs, ipairs;
local tostring = tostring;
local type = type;
local array = {};
local array_base = {};