0.0.1 • Published 3 years ago

@uppercod/jsdoc v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

@uppercod/jsdoc

Returns JSDOC type comments in simple block format, for later analysis.

Install

npm install @uppercod/jsdoc

Example

import { parse, parseComment } from "@uppercod/jsdoc";

parseComment(`
description...
@param {number} foo - bla bla...
`);

[
    { children: ["description..."] },
    {
        tag: "param",
        type: "number",
        name: "foo",
        children: ["bla bla..."],
    },
];