npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

block-comment-regex

0.1.1

@jonschlinkert

npmHomeRepoSnykSocket
Downloads:0
$ npm install block-comment-regex
DailyWeeklyMonthlyYearly

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

  • github/jonschlinkert
  • twitter/jonschlinkert

License

Copyright (c) 2014 Jon Schlinkert
Released under the MIT license


This file was generated by verb on November 23, 2014.