block-comment-regex

0.1.1 • Public • Published

block-comment-regex NPM version

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.

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i block-comment-regex

    Weekly Downloads

    3

    Version

    0.1.1

    License

    none

    Last publish

    Collaborators

    • doowb
    • jonschlinkert