https://github.com/thisconnect/tool
object utilities
https://github.com/thisconnect/tool
Last synced: about 2 months ago
JSON representation
object utilities
- Host: GitHub
- URL: https://github.com/thisconnect/tool
- Owner: thisconnect
- License: mit
- Created: 2013-07-22T05:27:27.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-03T03:22:24.000Z (almost 12 years ago)
- Last Synced: 2025-01-06T16:18:28.944Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 148 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license
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
```