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