An open API service indexing awesome lists of open source software.

https://github.com/aleclarson/is-open-comment

Returns true if a string has an unclosed comment
https://github.com/aleclarson/is-open-comment

Last synced: about 1 year ago
JSON representation

Returns true if a string has an unclosed comment

Awesome Lists containing this project

README

          

# 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.

```js
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

```sh
# Install dev dependencies.
npm i

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

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