Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

lumeland/svgo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SVGO for Deno

DEPRECATED SVGO provides esm module for browsers, compatible with Deno. https://unpkg.com/svgo@2.7.0/dist/svgo.browser.js


SVGO fork to make it work in Deno.

Usage

import { optimize } from "https://raw.githubusercontent.com/lumeland/svgo/deno/mod.js";

const filepath = "assets/my-logo.svg";
const data = await Deno.readTextFile(filepath);

const result = optimize(data, {
  path: filepath,
  plugins: [
    "cleanupAttrs",
    "removeDoctype",
    "removeXMLProcInst",
    //...
  ],
});

console.log(result);

Packages

No packages published

Languages

  • JavaScript 99.6%
  • TypeScript 0.4%