# breed

> Breed is a Helper Module which makes working with types and typeof easy as easy as it should be

Latest version **0.3.1** (published 2013-03-15) · 0 weekly downloads

## Install

```sh
npm install breed
pnpm add breed
yarn add breed
bun add breed
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.3.1 |
| Published | 2013-03-15 |
| First published | 2013-03-07 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.6.0 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Bastian Behrens |
| Maintainers | hereandnow |
| Keywords | breed, type, typeof, typecheck, check |

## Links

- npm: https://www.npmjs.com/package/breed
- Repository: https://github.com/hereandnow/node-breed
- Homepage: http://hereandnow.github.com/node-breed/
- Issues: https://github.com/hereandnow/node-breed/issues
- npm.io page: https://npm.io/package/breed

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.3.1 (latest) — 2013-03-15
- 0.3.0 — 2013-03-09
- 0.2.1 — 2013-03-09
- 0.2.0 — 2013-03-08
- 0.1.0 — 2013-03-07

## README

# Breed

[![build status](https://secure.travis-ci.org/hereandnow/node-breed.png)](http://travis-ci.org/hereandnow/node-breed)


## About

Breed is a Helper Module which makes working with types and typeof as easy as it should be.

You are even able to extend Breed with your own Functions.

You can find the [complete Documentation here](http://hereandnow.github.com/node-breed/)


Install the module with: `npm install breed`

```
var breed = require('breed');
function Person () {}
breed.register(Person);
breed.isObject(new Person()); // true
breed.isPerson(new Person()); // true
breed.isArray(new Person()); // false
breed.isntPerson(new Person()); // false
```


## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/):

- Available Tasks:
  - jshint
  - nodeunit
  - default (jshint + nodeunit)


## Release History

- 0.3.1
  - Deploy new Doc

- 0.3.0
  - Refactor for more performance

- 0.2.1
  - Move Documentation to http://hereandnow.github.com/node-breed/
  - Fix some typos in Docs

- 0.2.0
   - Implement JSON, NaN, Finite
   - author breed.register()
   - rename breed.get() to breed.is()


* 0.1.0 Initial Release

## License
Copyright (c) 2013 Bastian Behrens
Licensed under the MIT license.

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