Tuesday, August 6, 2013

Wiktionary - Recent changes [en]: Module:debug

Wiktionary - Recent changes [en]
Track the most recent changes to the wiki in this feed. // via fulltextrssfeed.com 
Module:debug
Aug 6th 2013, 23:54, by CodeCat


This module lacks a documentation page. Please create it.
  local export = {}     -- Convert a value to a string  function export.dump(value)      local t = type(value)         if t == "string" then          return '"' .. value .. '"'      elseif t == "table" then          local str_table = {}             for key, val in pairs(value) do              table.insert(str_table, key .. " = " .. export.dump(val))          end             return "{" .. table.concat(str_table, ", ") .. "}"      else          return tostring(value)      end  end     return export  

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions