parse-comment-es6
TypeScript icon, indicating that this package has built-in type declarations

0.5.5 • Public • Published

parse-comment-es6

NPM version Build Status

A new comment parse for es6

Install

npm install parse-comment-es6 --save
yarn add parse-comment-es6

Usage

import strip from 'parse-comment-es6';
const p = '`aaa`\n//abc\n';
console.log(strip(p, { comment: true, range: true, loc: true, raw: true }));
// =>
//    text: '`aaa`\n\n',
//    comments: [
//        {
//             type: 'LineComment',
//             raw: '//abc'
//             loc: {
//                 start: {
//                     line: 1,
//                     column: 0,
//                 },
//                 end: {
//                     line: 1,
//                     column: 5,
//                 },
//             },
//             range: {
//                 start: 6,
//                 end: 11,
//             },
//       }
//   ]
// };

Option

Property Description Type Default
comment need to return comment list boolean false
raw need to return comment raw, comment option should be true boolean false
loc need to return comment loc, comment option should be true boolean false
range need to return comment range, comment option should be true boolean false

Test

test past using jquery, react, react-dom

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Dependencies (0)

    Dev Dependencies (14)

    Package Sidebar

    Install

    npm i parse-comment-es6

    Weekly Downloads

    0

    Version

    0.5.5

    License

    MIT

    Last publish

    Collaborators

    • yuecjnadt