Skip to main content
Module

x/js_yaml_port/generate.js

This is a simple and crude port of JS-YAML for Deno.
Latest
File
import './js-yaml.min.js'
let text = `/// <reference types="./js-yaml.d.ts" />import './js-yaml.min.js'
// Re-export keys`
for (const name in window.jsyaml) { text += `export let ${name} = window.jsyaml.${name}\n`}
console.log(text.trim())