An open API service indexing awesome lists of open source software.

https://github.com/thisconnect/tool

object utilities
https://github.com/thisconnect/tool

Last synced: about 2 months ago
JSON representation

object utilities

Awesome Lists containing this project

README

          

# Tool

Notice: Arrays are handled as

API
---

- merge(object1, object2)

- get(object, path)

- set(object, path, value)

- setCharAt(string, index, chars)

- isArray()

- version

Example
-------

```javascript
var merge = require('tool').merge;

merge({foo: 1}, {bar: 2});
// {foo: 1, bar: 2}
```

Tests
-----

```make
make
```