0.0.3 • Published 5 years ago

pretty-comment v0.0.3

Weekly downloads
4
License
ISC
Repository
-
Last release
5 years ago

pretty-comment

format pretty comment

usage

const origin=`
/**
 * ```js
 * let a = function b() {console.log("asd");
 * };
 * ```
 * ```json
 * {name: 1
 * }
 * ```
 */`
const prettyComment=require('pretty-comment')
console.log(prettyComment(origin))
/**
 * ```js
 * let a = function b() {
 *   console.log("asd");
 * };
 * ```
 * ```json
 * {
 *    "name": 1
 * }
 * ```
 */