Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@babel/plugin-transform-flow-strip-types
Advanced tools
Strip flow type annotations from your output code.
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.
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;
}
Similar to @babel/plugin-transform-flow-strip-types, this Babel plugin strips TypeScript annotations from the code. While both plugins serve a similar purpose of removing type annotations, they cater to different type systems: Flow for the former and TypeScript for the latter.
This plugin also deals with Flow types but instead of stripping them, it converts them into comments. This can be useful for preserving type annotations in the transpiled output without affecting the runtime behavior.
Strip all flow type annotations and declarations from your output code.
In
function foo(one: any, two: number, three?): string {}
Out
function foo(one, two, three) {}
npm install --save-dev @babel/plugin-transform-flow-strip-types
.babelrc
(Recommended).babelrc
{
"plugins": ["@babel/plugin-transform-flow-strip-types"]
}
babel --plugins @babel/plugin-transform-flow-strip-types script.js
require("@babel/core").transform("code", {
plugins: ["@babel/plugin-transform-flow-strip-types"]
});
requireDirective
boolean
, defaults to false
.
Setting this to true will only strip annotations and declarations from files
that contain the // @flow
directive. It will also throw errors for any Flow
annotations found in files without the directive.
FAQs
Strip flow type annotations from your output code.
The npm package @babel/plugin-transform-flow-strip-types receives a total of 7,853,271 weekly downloads. As such, @babel/plugin-transform-flow-strip-types popularity was classified as popular.
We found that @babel/plugin-transform-flow-strip-types demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.