Socket
Socket
Sign inDemoInstall

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

Package Overview
Dependencies
78
Maintainers
4
Versions
77
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Strip flow type annotations from your output code.


Version published
Maintainers
4
Install size
8.04 kB
Created

Package description

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

Readme

Source

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

Strip all flow type annotations and declarations from your output code.

Example

In

function foo(one: any, two: number, three?): string {}

Out

function foo(one, two, three) {}

Installation

npm install --save-dev @babel/plugin-transform-flow-strip-types

Usage

.babelrc

{
  "plugins": ["@babel/plugin-transform-flow-strip-types"]
}

Via CLI

babel --plugins @babel/plugin-transform-flow-strip-types script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["@babel/plugin-transform-flow-strip-types"]
});

Options

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.

Keywords

FAQs

Last updated on 02 Dec 2017

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.

Install

Related posts

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