block-comment-regex
v0.1.1
Published
RegExp for matching JavaScript-style block comments in a string. Should also work for SASS, LESS and other languages with the same block comment format.
Downloads
3
Readme
block-comment-regex
RegExp for matching JavaScript-style block comments in a string. Should also work for SASS, LESS and other languages with the same block comment format.
Install
Install with npm
npm i block-comment-regex --save
Run tests
npm test
Usage
var re = require('block-comment-regex');
console.log(re().exec('abc /* block comment */ abc'));
// returns:
[ '/* block comment */',
' block comment ',
index: 4,
input: 'abc /* block comment */ abc' ]
API
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
Jon Schlinkert
License
Copyright (c) 2014 Jon Schlinkert
Released under the MIT license
This file was generated by verb on November 23, 2014.