Skip to main content
Module

std/front_matter/any.ts>test

Deno standard library
Go to Latest
function test
import { test } from "https://deno.land/std@0.190.0/front_matter/any.ts";

Tests if a string has valid front matter. Supports YAML, TOML and JSON.

Parameters

str: string

String to test.

optional
formats: Format[]

A list of formats to test for. Defaults to all supported formats.

import { test, Format } from "https://deno.land/std@0.190.0/front_matter/mod.ts";
import { assert } from "https://deno.land/std@0.190.0/testing/asserts.ts";

assert(test("---\ntitle: Three dashes marks the spot\n---\n"));
assert(test("---toml\ntitle = 'Three dashes followed by format marks the spot'\n---\n"));
assert(test("---json\n{\"title\": \"Three dashes followed by format marks the spot\"}\n---\n"));

assert(!test("---json\n{\"title\": \"Three dashes followed by format marks the spot\"}\n---\n", [Format.YAML]));

Returns

boolean