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 = // => true // => true // => false // => true // => 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