Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/eslint-plugin-react/lib/util/jsx.js

    rd565449 r0c6b92a  
    7777/**
    7878 * Check if value has only whitespaces
    79  * @param {string} value
     79 * @param {unknown} value
    8080 * @returns {boolean}
    8181 */
     
    8989 * @param {Context} context The context of `ASTNode`.
    9090 * @param {ASTNode} ASTnode The AST node being checked
    91  * @param {Boolean} [strict] If true, in a ternary condition the node must return JSX in both cases
    92  * @param {Boolean} [ignoreNull] If true, null return values will be ignored
    93  * @returns {Boolean} True if the node is returning JSX or null, false if not
     91 * @param {boolean} [strict] If true, in a ternary condition the node must return JSX in both cases
     92 * @param {boolean} [ignoreNull] If true, null return values will be ignored
     93 * @returns {boolean} True if the node is returning JSX or null, false if not
    9494 */
    9595function isReturningJSX(context, ASTnode, strict, ignoreNull) {
     
    146146 * @param {ASTNode} ASTnode The AST node being checked
    147147 * @param {Context} context The context of `ASTNode`.
    148  * @returns {Boolean} True if the node is returning only null values
     148 * @returns {boolean} True if the node is returning only null values
    149149 */
    150150function isReturningOnlyNull(ASTnode, context) {
Note: See TracChangeset for help on using the changeset viewer.