This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
compat_env v$(_VERSION) - Lua 5.1/5.2 environment compatibility functions | |
SYNOPSIS | |
-- Get load/loadfile compatibility functions only if using 5.1. | |
local CL = pcall(load, '') and _G or require 'compat_env' | |
local load = CL.load | |
local loadfile = CL.loadfile |