# apal

> Another Property Access Library

Latest version **0.1.1** (published 2016-06-18) · BSD-3-Clause license · 0 weekly downloads

## Install

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

## 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.1.1 |
| Published | 2016-06-18 |
| First published | 2016-05-12 |
| Weekly downloads | 0 |
| License | BSD-3-Clause |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alex V. Povar |
| Maintainers | wertlex |
| Keywords | path, dot, access, object, dotty |

## Links

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

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 0.1.1 (latest) — 2016-06-18
- 0.1.0 — 2016-06-13
- 0.0.2 — 2016-05-12
- 0.0.1 — 2016-05-12

## README

# Another Property Access Library

## What is that ?

This is one more library for nested property access within Javascript objects. It is aimed to be straightforward, predictable and fast without any additional overhead. It is intentionally written in a bit simpler way in hope to be faster in certain cases. 

## How to install it ?

```
npm install apal
```

## How to use it ?

```javascript
var apal = require('apal');

var myObject = {
  name: 'John',
  notifications: {
    email:  true,
    phone:  true
  }
};

var emailNotifications = apal.get(myObject, ['notifications', 'email']);

apal.set(myObject, ['notifications', 'personal', true]);

```

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