UNPKG
@johnnymorganz/stylua
Version:
latest (2.3.1)
2.3.1
2.3.0
2.2.0
2.1.0
2.0.2
2.0.1
2.0.0
0.20.0
0.19.1
0.19.0
0.18.2
0.18.1
0.18.0
0.17.0
0.16.1
0.16.0
0.15.3
0.15.2
0.15.1
0.15.0
0.14.3
0.14.2
0.14.0
0.13.1-alpha.1
A code formatter for Lua
github.com/johnnymorganz/stylua
johnnymorganz/stylua
@johnnymorganz/stylua
/
stylua_lib.mjs
8 lines
(5 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
fs
from
"node:fs"
;
import
{ initSync }
from
"./stylua.web/stylua_lib.js"
;
const
wasm =
new
URL
(
"./stylua.web/stylua_lib_bg.wasm"
,
import
.
meta
.
url
);
initSync
(fs.
readFileSync
(wasm));
export
*
from
"./stylua.web/stylua_lib.js"
;