Sha256: 2fe00ed7c70b174cd9eeefdb49f2c4574f6724e641410fa8dfc2cdbfc44e84b5

Contents?: true

Size: 778 Bytes

Versions: 164

Compression:

Stored size: 778 Bytes

Contents

"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = is;
var _shallowEqual = require("../utils/shallowEqual.js");
var _isType = require("./isType.js");
var _isPlaceholderType = require("./isPlaceholderType.js");
var _index = require("../definitions/index.js");
function is(type, node, opts) {
  if (!node) return false;
  const matches = (0, _isType.default)(node.type, type);
  if (!matches) {
    if (!opts && node.type === "Placeholder" && type in _index.FLIPPED_ALIAS_KEYS) {
      return (0, _isPlaceholderType.default)(node.expectedNode, type);
    }
    return false;
  }
  if (typeof opts === "undefined") {
    return true;
  } else {
    return (0, _shallowEqual.default)(node, opts);
  }
}

//# sourceMappingURL=is.js.map

Version data entries

164 entries across 16 versions & 3 rubygems

Version Path
immosquare-cleaner-0.1.40 node_modules/@babel/types/lib/validators/is.js
wice_grid-7.1.0 node_modules/@babel/types/lib/validators/is.js
immosquare-cleaner-0.1.39 node_modules/@babel/types/lib/validators/is.js
immosquare-cleaner-0.1.38 node_modules/@babel/types/lib/validators/is.js