
import { createScalar } from "../utilities";

export const JsonScalar = createScalar(
  "json", "javascript object notation", {
    string : true,
    number : true,
    boolean: true,
    object : true,
    array  : true,
  }
);
