UNPKG
@isentinel/eslint-plugin-comment-length
Version:
latest (2.2.0)
2.2.0
1.7.3
lasselupe33/eslint-plugin-comment-length
@isentinel/eslint-plugin-comment-length
/
lib
/
utils
/
is-jsdoc-like.js
8 lines
•
289 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
isJSDocLikeComment
=
void
0
;
function
isJSDocLikeComment
(
value
) {
return
value.
trimStart
().
startsWith
(
"@"
); }
exports
.
isJSDocLikeComment
= isJSDocLikeComment;
//# sourceMappingURL=is-jsdoc-like.js.map