Skip to content

thisconnect/tool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tool

Notice: Arrays are handled as

API

  • merge(object1, object2)

  • get(object, path)

  • set(object, path, value)

  • setCharAt(string, index, chars)

  • isArray()

  • version

Example

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

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

Tests

make