0.1.1 • Published 6 years ago

is-open-comment v0.1.1

Weekly downloads
10
License
-
Repository
github
Last release
6 years ago

is-open-comment v0.1.1

Returns true if a string opens a comment without closing it.

  • No runtime dependencies.
  • Comment syntax within a string literal causes a false positive.
const isOpenComment = require('is-open-comment')

isOpenComment('//')       // => true
isOpenComment('/*')       // => true
isOpenComment('/* // */') // => false
isOpenComment('/* \n')    // => true
isOpenComment('// \n')    // => false

Look at test.js for all supported edge cases.

Tests

# Install dev dependencies.
npm i

# Run the tests once.
./test.js -v

# Run the tests when a file changes.
./test.js -w -v