3 Star 0 Fork 0

mirrors_zhaozg/lua-webview-1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.lua 854 Bytes
一键复制 编辑 原始数据 按行查看 历史
javalikescript 提交于 2021-02-19 21:27 . Fix launcher initialization
local webviewLauncher = require('webview-launcher')
print('-- JSON --------')
local values = {
'ti/ti\nta\9ta\tto\20to "tutu" ty\\ty',
'', 'Hi', true, false, 123, -123, 1.23,
}
for _, value in ipairs(values) do
local encoded = webviewLauncher.jsonLib.encode(value)
local decoded = webviewLauncher.jsonLib.decode(encoded)
if value == decoded then
print(encoded, type(value), 'Ok')
else
print('>>'..tostring(value)..'<<'..type(value))
print('>>'..tostring(encoded)..'<<'..type(encoded))
print('>>'..tostring(decoded)..'<<'..type(decoded))
end
end
print('-- FS --------')
print('currentdir:', webviewLauncher.fsLib.currentdir())
local paths = {'webview-launcher.lua', 'not a file'}
for _, path in ipairs(paths) do
print(path, webviewLauncher.fsLib.attributes(path) and 'exists' or 'not found')
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_zhaozg/lua-webview-1.git
git@gitee.com:mirrors_zhaozg/lua-webview-1.git
mirrors_zhaozg
lua-webview-1
lua-webview-1
master

搜索帮助