sebastienrousseau / crypto-service

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
7 months agoa year old
Documentation comment not found for arrow function welcome
 2import format from "kleur";
 3import { constants } from "../constants/index";
 4
 5export const welcome = async (data: string) => { 6  if (!data || !data.length) {
 7    data = constants.CLI_TITLE;
 8  }
Documentation comment not found for function declaration language
 4const locale = Intl.DateTimeFormat().resolvedOptions().locale.slice(0, 2);
 5let constants;
 6
 7async function language(data: string) { 8  {
 9    if (data === "en") {
10      console.log("en", data);
Documentation comment not found for arrow function handleVerify
 1import verify from "@sebastienrousseau/crypto-lib/dist/lib/verify";
 2import prompts from "prompts";
 3
 4const handleVerify = async () => { 5  const responseVerify = await prompts([
 6    {
 7      type: "text",
Documentation comment not found for arrow function handleHelp
  4
  5language(locale);
  6
  7const handleHelp = async () => {  8  const responseHelp = await prompts([
  9    {
 10      type: "select",
Documentation comment not found for function declaration reformat
 88  return generate;
 89}
 90
 91export async function reformat(data: dataReformat) { 92  const reformat = await key.reformat.default(data);
 93  return reformat;
 94}