Skip to main content
Module

std/front_matter/json.ts

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