New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-pipe-operator

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-pipe-operator

Adds a pipe operator to call pure, synchronous transformer functions within JSX expressions.

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-transform-pipe-operator

Adds a pipe operator to call pure, synchronous transformer functions within JSX expressions.

Example

A pipe inside a JSX expression,

const Shout = ({ name }) => (
  <div>YO, { name | toUpperCase }!</div>
);

Becomes a function call in the result:

const Shout = ({ name }) => (
  <div>YO, { toUpperCase(name) }!</div>
);

To pass a parameter, implement the transformer as a factory.

const toFixed = (places) => (value) => value.toFixed(places);

const Cell = ({ value }) => (
  <td>{ value | toFixed(2) }</td>
);
const toFixed = (places) => (value) => value.toFixed(places);

const Cell = ({ value }) => (
  <td>{ toFixed(2)(value) }</td>
);

FAQs

Package last updated on 27 Mar 2018

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc