Skip to main content
Module

x/sass/mod.ts

πŸš€ Cute Sass compiler bindings to Deno.
Latest
File
import { compile as rs_compile,} from "./plugin/index.ts";
import { IOptions } from "./types/options.ts";
export function compile(str: string, opts?: IOptions) { return rs_compile(str, opts);}