Skip to content

Instantly share code, notes, and snippets.

@un-def
Created March 29, 2018 18:15
Show Gist options
  • Save un-def/e2d9b4460c5f220d19314c5b878290df to your computer and use it in GitHub Desktop.
Save un-def/e2d9b4460c5f220d19314c5b878290df to your computer and use it in GitHub Desktop.
get_basename lua snippet
local get_basename = function(path)
return path:match('/([^/]*)$') or path
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment