🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

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

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
b

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

Strip flow type annotations from your output code.

7.27.1
latest
100

Supply Chain Security

100

Vulnerability

71

Quality

94

Maintenance

100

License

Version published
Weekly downloads
13M
-7.97%
Maintainers
4
Weekly downloads
 
Created
Issues
770

What is @babel/plugin-transform-flow-strip-types?

The @babel/plugin-transform-flow-strip-types npm package is a plugin for Babel, a JavaScript compiler, that removes type annotations from Flow, a static type checker for JavaScript. This allows developers to write type-safe code during development and strip out these annotations for production builds, resulting in clean JavaScript that can be executed in environments that do not support Flow.

What are @babel/plugin-transform-flow-strip-types's main functionalities?

Stripping Flow Type Annotations

This feature removes Flow type annotations from your JavaScript files, converting typed code into plain JavaScript. The code sample shows a function with Flow types that are stripped out after transformation.

import { foo } from 'bar';
function square(n: number): number {
  return n * n;
}
// Transformed to:
import { foo } from 'bar';
function square(n) {
  return n * n;
}

Other packages similar to @babel/plugin-transform-flow-strip-types

Keywords

FAQs

Package last updated on 30 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts