Skip to main content
Module

std/front_matter/toml.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { createExtractor, type Extractor, Parser } from "./create_extractor.ts";import { parse } from "../toml/parse.ts";
export const extract: Extractor = createExtractor({ ["toml"]: parse as Parser,});