scottburch / river-commonUtils

Common Arrray,Object and Function utilities

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some Array, Object and Funtion utilities used for the river framework

Installation

Copy these files in a directory called commonUtils under the modules directory and then include in the list of modules to load

Use

var arrayUtils = require('commonUtilsModule').array;

var found = arrayUtils.find(myArray, function(it) {
    return it.name === 'ted';
});

About

Common Arrray,Object and Function utilities


Languages

Language:JavaScript 100.0%