1.0.0 • Published 8 years ago

strip-stars v1.0.0

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

strip-stars

GratiPay Downloads Version

Removes C-style comment stars from every line of the string.

Installation

npm install --save-dev strip-stars

Usage

import stripStars from 'strip-stars';

stripStars(`
 * This is a description.
 *
 * ## Example
 *
 * ```js
 * function hello() {
 *   console.log('Hi!');
 * }
 * ```
`);

// This is a description.
//
// ## Example
//
// ```js
// function hello() {
//   console.log('Hi!');
// }
// ```

License

ISC