# nonenumerable

> Decorator to make properties non-enumerable.

Latest version **1.1.1** (published 2017-11-08) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2017-11-08 |
| First published | 2016-12-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Endel Dreyer |
| Maintainers | endel |
| Keywords | decorator, enumerable, nonenumerable |

## Links

- npm: https://www.npmjs.com/package/nonenumerable
- Repository: https://github.com/endel/nonenumerable
- Homepage: https://github.com/endel/nonenumerable#readme
- Issues: https://github.com/endel/nonenumerable/issues
- npm.io page: https://npm.io/package/nonenumerable

## Alternatives

- [localforage](https://npm.io/package/localforage.md) — 6.2M weekly downloads
- [localforage-observable](https://npm.io/package/localforage-observable.md) — 30.8K weekly downloads
- [@y/y](https://npm.io/package/@y/y.md) — 30.1K weekly downloads
- [@metaobjectsdev/render](https://npm.io/package/@metaobjectsdev/render.md) — 3.5K weekly downloads
- [@ledgerhq/coin-algorand](https://npm.io/package/@ledgerhq/coin-algorand.md) — 1.1K weekly downloads

## Recent versions

- 1.1.1 (latest) — 2017-11-08
- 1.1.0 — 2017-11-05
- 1.0.1 — 2016-12-23
- 1.0.0 — 2016-12-13

## README

# nonenumerable [![Build status](https://travis-ci.org/endel/nonenumerable.svg?branch=master)](https://travis-ci.org/endel/nonenumerable)

Decorator to make properties non-enumerable.

## Usage

Ensure you have [decorators](https://github.com/wycats/javascript-decorators)
support in your environment. For TypeScript, add `"experimentalDecorators":
true` in your `tsconfig.json`. For Babel, configure [the syntax-decorator
plugin](https://babeljs.io/docs/plugins/syntax-decorators/).

```ts
import { nonenumerable } from "nonenumerable";

class MyClass {
    @nonenumerable
    property = 5;
}
```

License
---

MIT

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