Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 769 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 769 Bytes

Test

Install

npm

npm install @wasm-fmt/sql_fmt

jsr.io

npx jsr add @fmt/sql-fmt

Usage

import init, { format } from "@wasm-fmt/sql_fmt";

await init();

const input = `SELECT count(*),Column1 FROM Table1;`;

const formatted = format(input, "query.sql");
console.log(formatted);

For Vite users:

import init, { format } from "@wasm-fmt/sql_fmt/vite";

// ...