Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@babel/plugin-transform-flow-strip-types

Package Overview
Dependencies
55
Maintainers
4
Versions
82
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.21.4-esm.4 to 7.22.5

21

lib/index.js

@@ -1,5 +0,11 @@

import { declare } from "@babel/helper-plugin-utils";
import syntaxFlow from "@babel/plugin-syntax-flow";
import { types as t } from "@babel/core";
export default declare((api, opts) => {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _pluginSyntaxFlow = require("@babel/plugin-syntax-flow");
var _core = require("@babel/core");
var _default = (0, _helperPluginUtils.declare)((api, opts) => {
api.assertVersion(7);

@@ -18,3 +24,3 @@ const FLOW_DIRECTIVE = /(@flow(\s+(strict(-local)?|weak))?|@noflow)/;

name: "transform-flow-strip-types",
inherits: syntaxFlow,
inherits: _pluginSyntaxFlow.default,
visitor: {

@@ -122,3 +128,3 @@ Program(path, {

}
if (!t.isMethod(node)) {
if (!_core.types.isMethod(node)) {
node.predicate = null;

@@ -134,3 +140,3 @@ }

node = node.expression;
} while (t.isTypeCastExpression(node));
} while (_core.types.isTypeCastExpression(node));
path.replaceWith(node);

@@ -159,3 +165,4 @@ },

});
exports.default = _default;
//# sourceMappingURL=index.js.map
{
"name": "@babel/plugin-transform-flow-strip-types",
"version": "7.21.4-esm.4",
"version": "7.22.5",
"description": "Strip flow type annotations from your output code.",

@@ -20,11 +20,11 @@ "repository": {

"dependencies": {
"@babel/helper-plugin-utils": "7.21.4-esm.4",
"@babel/plugin-syntax-flow": "7.21.4-esm.4"
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/plugin-syntax-flow": "^7.22.5"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0 || ^7.21.4-esm.2"
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "7.21.4-esm.4",
"@babel/helper-plugin-test-runner": "7.21.4-esm.4"
"@babel/core": "^7.22.5",
"@babel/helper-plugin-test-runner": "^7.22.5"
},

@@ -35,3 +35,3 @@ "engines": {

"author": "The Babel Team (https://babel.dev/team)",
"type": "module"
"type": "commonjs"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc