{
  "type": "File",
  "start": 0,
  "end": 252,
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 9,
      "column": 0
    }
  },
  "program": {
    "type": "Program",
    "start": 0,
    "end": 252,
    "loc": {
      "start": {
        "line": 1,
        "column": 0
      },
      "end": {
        "line": 9,
        "column": 0
      }
    },
    "sourceType": "module",
    "body": [
      {
        "type": "ExportNamedDeclaration",
        "start": 177,
        "end": 251,
        "loc": {
          "start": {
            "line": 8,
            "column": 0
          },
          "end": {
            "line": 8,
            "column": 74
          }
        },
        "specifiers": [],
        "source": null,
        "declaration": {
          "type": "VariableDeclaration",
          "start": 184,
          "end": 251,
          "loc": {
            "start": {
              "line": 8,
              "column": 7
            },
            "end": {
              "line": 8,
              "column": 74
            }
          },
          "declarations": [
            {
              "type": "VariableDeclarator",
              "start": 188,
              "end": 251,
              "loc": {
                "start": {
                  "line": 8,
                  "column": 11
                },
                "end": {
                  "line": 8,
                  "column": 74
                }
              },
              "id": {
                "type": "Identifier",
                "start": 188,
                "end": 196,
                "loc": {
                  "start": {
                    "line": 8,
                    "column": 11
                  },
                  "end": {
                    "line": 8,
                    "column": 19
                  },
                  "identifierName": "isNumber"
                },
                "name": "isNumber",
                "leadingComments": null
              },
              "init": {
                "type": "ArrowFunctionExpression",
                "start": 199,
                "end": 251,
                "loc": {
                  "start": {
                    "line": 8,
                    "column": 22
                  },
                  "end": {
                    "line": 8,
                    "column": 74
                  }
                },
                "id": {
                  "type": "Identifier",
                  "start": 188,
                  "end": 196,
                  "loc": {
                    "start": {
                      "line": 8,
                      "column": 11
                    },
                    "end": {
                      "line": 8,
                      "column": 19
                    },
                    "identifierName": "isNumber"
                  },
                  "name": "isNumber",
                  "leadingComments": null
                },
                "generator": false,
                "expression": true,
                "async": false,
                "params": [
                  {
                    "type": "Identifier",
                    "start": 199,
                    "end": 204,
                    "loc": {
                      "start": {
                        "line": 8,
                        "column": 22
                      },
                      "end": {
                        "line": 8,
                        "column": 27
                      },
                      "identifierName": "value"
                    },
                    "name": "value"
                  }
                ],
                "body": {
                  "type": "BinaryExpression",
                  "start": 210,
                  "end": 249,
                  "loc": {
                    "start": {
                      "line": 8,
                      "column": 33
                    },
                    "end": {
                      "line": 8,
                      "column": 72
                    }
                  },
                  "left": {
                    "type": "CallExpression",
                    "start": 210,
                    "end": 239,
                    "loc": {
                      "start": {
                        "line": 8,
                        "column": 33
                      },
                      "end": {
                        "line": 8,
                        "column": 62
                      }
                    },
                    "callee": {
                      "type": "Identifier",
                      "start": 210,
                      "end": 216,
                      "loc": {
                        "start": {
                          "line": 8,
                          "column": 33
                        },
                        "end": {
                          "line": 8,
                          "column": 39
                        },
                        "identifierName": "Number"
                      },
                      "name": "Number"
                    },
                    "arguments": [
                      {
                        "type": "CallExpression",
                        "start": 218,
                        "end": 237,
                        "loc": {
                          "start": {
                            "line": 8,
                            "column": 41
                          },
                          "end": {
                            "line": 8,
                            "column": 60
                          }
                        },
                        "callee": {
                          "type": "Identifier",
                          "start": 218,
                          "end": 228,
                          "loc": {
                            "start": {
                              "line": 8,
                              "column": 41
                            },
                            "end": {
                              "line": 8,
                              "column": 51
                            },
                            "identifierName": "parseFloat"
                          },
                          "name": "parseFloat"
                        },
                        "arguments": [
                          {
                            "type": "Identifier",
                            "start": 230,
                            "end": 235,
                            "loc": {
                              "start": {
                                "line": 8,
                                "column": 53
                              },
                              "end": {
                                "line": 8,
                                "column": 58
                              },
                              "identifierName": "value"
                            },
                            "name": "value"
                          }
                        ]
                      }
                    ]
                  },
                  "operator": "===",
                  "right": {
                    "type": "Identifier",
                    "start": 244,
                    "end": 249,
                    "loc": {
                      "start": {
                        "line": 8,
                        "column": 67
                      },
                      "end": {
                        "line": 8,
                        "column": 72
                      },
                      "identifierName": "value"
                    },
                    "name": "value"
                  },
                  "extra": {
                    "parenthesized": true,
                    "parenStart": 208
                  }
                }
              },
              "leadingComments": null
            }
          ],
          "kind": "let",
          "leadingComments": [
            {
              "type": "CommentBlock",
              "value": "*\n * Checks if the value is a number\n * @param {mixed} value The value to be checked if it's a number\n * @return {Boolean} Returns true if value is a number\n ",
              "start": 14,
              "end": 176,
              "loc": {
                "start": {
                  "line": 3,
                  "column": 0
                },
                "end": {
                  "line": 7,
                  "column": 3
                }
              }
            }
          ],
          "trailingComments": []
        },
        "leadingComments": [
          {
            "type": "CommentBlock",
            "value": "*\n * Checks if the value is a number\n * @param {mixed} value The value to be checked if it's a number\n * @return {Boolean} Returns true if value is a number\n ",
            "start": 14,
            "end": 176,
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 7,
                "column": 3
              }
            }
          }
        ]
      }
    ],
    "directives": [
      {
        "type": "Directive",
        "start": 0,
        "end": 12,
        "loc": {
          "start": {
            "line": 1,
            "column": 0
          },
          "end": {
            "line": 1,
            "column": 12
          }
        },
        "value": {
          "type": "DirectiveLiteral",
          "start": 0,
          "end": 12,
          "loc": {
            "start": {
              "line": 1,
              "column": 0
            },
            "end": {
              "line": 1,
              "column": 12
            }
          },
          "value": "use strict",
          "extra": {
            "raw": "'use strict'",
            "rawValue": "use strict"
          },
          "trailingComments": null
        },
        "trailingComments": [
          {
            "type": "CommentBlock",
            "value": "*\n * Checks if the value is a number\n * @param {mixed} value The value to be checked if it's a number\n * @return {Boolean} Returns true if value is a number\n ",
            "start": 14,
            "end": 176,
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 7,
                "column": 3
              }
            }
          }
        ]
      }
    ]
  },
  "comments": [
    {
      "type": "CommentBlock",
      "value": "*\n * Checks if the value is a number\n * @param {mixed} value The value to be checked if it's a number\n * @return {Boolean} Returns true if value is a number\n ",
      "start": 14,
      "end": 176,
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 7,
          "column": 3
        }
      }
    }
  ],
  "tokens": [
    {
      "type": {
        "label": "string",
        "beforeExpr": false,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null,
        "updateContext": null
      },
      "value": "use strict",
      "start": 0,
      "end": 12,
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 12
        }
      }
    },
    {
      "type": "CommentBlock",
      "value": "*\n * Checks if the value is a number\n * @param {mixed} value The value to be checked if it's a number\n * @return {Boolean} Returns true if value is a number\n ",
      "start": 14,
      "end": 176,
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 7,
          "column": 3
        }
      }
    },
    {
      "type": {
        "label": "export",
        "keyword": "export",
        "beforeExpr": false,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null,
        "updateContext": null
      },
      "value": "export",
      "start": 177,
      "end": 183,
      "loc": {
        "start": {
          "line": 8,
          "column": 0
        },
        "end": {
          "line": 8,
          "column": 6
        }
      }
    },
    {
      "type": {
        "label": "let",
        "keyword": "let",
        "beforeExpr": false,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null,
        "updateContext": null
      },
      "value": "let",
      "start": 184,
      "end": 187,
      "loc": {
        "start": {
          "line": 8,
          "column": 7
        },
        "end": {
          "line": 8,
          "column": 10
        }
      }
    },
    {
      "type": {
        "label": "name",
        "beforeExpr": false,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "value": "isNumber",
      "start": 188,
      "end": 196,
      "loc": {
        "start": {
          "line": 8,
          "column": 11
        },
        "end": {
          "line": 8,
          "column": 19
        }
      }
    },
    {
      "type": {
        "label": "=",
        "beforeExpr": true,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": true,
        "prefix": false,
        "postfix": false,
        "binop": null,
        "updateContext": null
      },
      "value": "=",
      "start": 197,
      "end": 198,
      "loc": {
        "start": {
          "line": 8,
          "column": 20
        },
        "end": {
          "line": 8,
          "column": 21
        }
      }
    },
    {
      "type": {
        "label": "name",
        "beforeExpr": false,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "value": "value",
      "start": 199,
      "end": 204,
      "loc": {
        "start": {
          "line": 8,
          "column": 22
        },
        "end": {
          "line": 8,
          "column": 27
        }
      }
    },
    {
      "type": {
        "label": "=>",
        "beforeExpr": true,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null,
        "updateContext": null
      },
      "start": 205,
      "end": 207,
      "loc": {
        "start": {
          "line": 8,
          "column": 28
        },
        "end": {
          "line": 8,
          "column": 30
        }
      }
    },
    {
      "type": {
        "label": "(",
        "beforeExpr": true,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "start": 208,
      "end": 209,
      "loc": {
        "start": {
          "line": 8,
          "column": 31
        },
        "end": {
          "line": 8,
          "column": 32
        }
      }
    },
    {
      "type": {
        "label": "name",
        "beforeExpr": false,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "value": "Number",
      "start": 210,
      "end": 216,
      "loc": {
        "start": {
          "line": 8,
          "column": 33
        },
        "end": {
          "line": 8,
          "column": 39
        }
      }
    },
    {
      "type": {
        "label": "(",
        "beforeExpr": true,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "start": 216,
      "end": 217,
      "loc": {
        "start": {
          "line": 8,
          "column": 39
        },
        "end": {
          "line": 8,
          "column": 40
        }
      }
    },
    {
      "type": {
        "label": "name",
        "beforeExpr": false,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "value": "parseFloat",
      "start": 218,
      "end": 228,
      "loc": {
        "start": {
          "line": 8,
          "column": 41
        },
        "end": {
          "line": 8,
          "column": 51
        }
      }
    },
    {
      "type": {
        "label": "(",
        "beforeExpr": true,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "start": 228,
      "end": 229,
      "loc": {
        "start": {
          "line": 8,
          "column": 51
        },
        "end": {
          "line": 8,
          "column": 52
        }
      }
    },
    {
      "type": {
        "label": "name",
        "beforeExpr": false,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "value": "value",
      "start": 230,
      "end": 235,
      "loc": {
        "start": {
          "line": 8,
          "column": 53
        },
        "end": {
          "line": 8,
          "column": 58
        }
      }
    },
    {
      "type": {
        "label": ")",
        "beforeExpr": false,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "start": 236,
      "end": 237,
      "loc": {
        "start": {
          "line": 8,
          "column": 59
        },
        "end": {
          "line": 8,
          "column": 60
        }
      }
    },
    {
      "type": {
        "label": ")",
        "beforeExpr": false,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "start": 238,
      "end": 239,
      "loc": {
        "start": {
          "line": 8,
          "column": 61
        },
        "end": {
          "line": 8,
          "column": 62
        }
      }
    },
    {
      "type": {
        "label": "==/!=",
        "beforeExpr": true,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": 6,
        "updateContext": null
      },
      "value": "===",
      "start": 240,
      "end": 243,
      "loc": {
        "start": {
          "line": 8,
          "column": 63
        },
        "end": {
          "line": 8,
          "column": 66
        }
      }
    },
    {
      "type": {
        "label": "name",
        "beforeExpr": false,
        "startsExpr": true,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "value": "value",
      "start": 244,
      "end": 249,
      "loc": {
        "start": {
          "line": 8,
          "column": 67
        },
        "end": {
          "line": 8,
          "column": 72
        }
      }
    },
    {
      "type": {
        "label": ")",
        "beforeExpr": false,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null
      },
      "start": 250,
      "end": 251,
      "loc": {
        "start": {
          "line": 8,
          "column": 73
        },
        "end": {
          "line": 8,
          "column": 74
        }
      }
    },
    {
      "type": {
        "label": "eof",
        "beforeExpr": false,
        "startsExpr": false,
        "rightAssociative": false,
        "isLoop": false,
        "isAssign": false,
        "prefix": false,
        "postfix": false,
        "binop": null,
        "updateContext": null
      },
      "start": 252,
      "end": 252,
      "loc": {
        "start": {
          "line": 9,
          "column": 0
        },
        "end": {
          "line": 9,
          "column": 0
        }
      }
    }
  ]
}