# babel-plugin-function-expressions

> Call functions as binary expressions

Latest version **1.0.1** (published 2021-12-07) · MIT License license · 0 weekly downloads

## Install

```sh
npm install babel-plugin-function-expressions
pnpm add babel-plugin-function-expressions
yarn add babel-plugin-function-expressions
bun add babel-plugin-function-expressions
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2021-12-07 |
| First published | 2021-12-07 |
| Weekly downloads | 0 |
| License | MIT License |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 444.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Juraj Martiček |
| Maintainers | jmarticek |

## Links

- npm: https://www.npmjs.com/package/babel-plugin-function-expressions
- Repository: https://github.com/georgjr2/babel-overload-plugin
- Homepage: https://github.com/georgjr2/babel-overload-plugin#readme
- Issues: https://github.com/georgjr2/babel-overload-plugin/issues
- npm.io page: https://npm.io/package/babel-plugin-function-expressions

## Dependencies (1)

- [@babel/core](https://npm.io/package/@babel/core.md) ^7.16.0

## Recent versions

- 1.0.1 (latest) — 2021-12-07
- 1.0.0 — 2021-12-07

## README

# babel-plugin-function-expressions


A Babel plugin that lets you call functions as binary expressions


## Usage

Install it:

```
npm install --save-dev babel-plugin-function-expressions
```

Add it to `.babelrc`:

```js
{
    "plugins": [ "function-expressions" ]
}
```

How to use:

```js
import {filter, sortBy} from 'lodash'

const data = [{x: 1, y: 2}, {x: 2, y: 1}, {x: 1, y: 1}]

const res = data @filter {x: 1} @sortBy 'y'

// res === [{x: 1, y: 1}, {x: 1, y: 2}]
```

---
_Source: https://npm.io/package/babel-plugin-function-expressions · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
