# am-are-is

> A lib to help get the correct form of 'be'

Latest version **1.0.1** (published 2017-07-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install am-are-is
pnpm add am-are-is
yarn add am-are-is
bun add am-are-is
```

## 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 | 2017-07-02 |
| First published | 2017-07-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Albert Schapiro |
| Maintainers | psomialbert |

## Links

- npm: https://www.npmjs.com/package/am-are-is
- npm.io page: https://npm.io/package/am-are-is

## Dependencies (1)

- [inflected](https://npm.io/package/inflected.md) ^2.0.2

## Recent versions

- 1.0.1 (latest) — 2017-07-02
- 1.0.0 — 2017-07-01

## README

# am-are-is
A simple node.js library which uses `inflected` to see if it should return `am`, `are` or `is`.

## Installation
```
yarn add am-are-is
or
npm install --save am-are-is
```

## Usage

```javascript
const amareis = require('am-are-is');

console.log(`I ${amareis('I')}`); // I am
console.log(`You ${amareis('yoU')}`); // You are
console.log(`They ${amareis('They')}`); // They are
console.log(`We ${amareis('we')}`); // We are
console.log(`It ${amareis('it')}`); // It is
console.log(`A ball ${amareis('ball')}`); // A ball is
console.log(`Balls ${amareis('balls')}`); // Balls are
```

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