9411b14533c136ab17bfe2040809f8dda99d2c58c1fc4b70135991584209b36ba060a466bd1d3965257976b8cc2002d36f90da44d35a5309702cdabd3a0d72 400 B

1234567891011121314151617
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = isLet;
  6. var _index = require("./generated/index.js");
  7. {
  8. var BLOCK_SCOPED_SYMBOL = Symbol.for("var used to be block scoped");
  9. }
  10. function isLet(node) {
  11. {
  12. return (0, _index.isVariableDeclaration)(node) && (node.kind !== "var" || node[BLOCK_SCOPED_SYMBOL]);
  13. }
  14. }
  15. //# sourceMappingURL=isLet.js.map