Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
21
Frontend-Learner/node_modules/eslint-plugin-vue/lib/utils/comments.js
generated
vendored
Normal file
21
Frontend-Learner/node_modules/eslint-plugin-vue/lib/utils/comments.js
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/**
|
||||
* @param {Comment} node
|
||||
* @returns {boolean}
|
||||
*/
|
||||
const isJSDocComment = (node) =>
|
||||
node.type === 'Block' &&
|
||||
node.value.charAt(0) === '*' &&
|
||||
node.value.charAt(1) !== '*'
|
||||
|
||||
/**
|
||||
* @param {Comment} node
|
||||
* @returns {boolean}
|
||||
*/
|
||||
const isBlockComment = (node) =>
|
||||
node.type === 'Block' &&
|
||||
(node.value.charAt(0) !== '*' || node.value.charAt(1) === '*')
|
||||
|
||||
module.exports = {
|
||||
isJSDocComment,
|
||||
isBlockComment
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue