您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 4 年前
..
test [Version] V.3.8 4 年前
.npmignore [Version] V.3.8 4 年前
LICENSE [Version] V.3.8 4 年前
README.md [Version] V.3.8 4 年前
index.coffee [Version] V.3.8 4 年前
index.js [Version] V.3.8 4 年前
package.json [Version] V.3.8 4 年前

README.md

iferr

Higher-order functions for easier error handling.

if (err) return cb(err); be gone!

Install

npm install iferr

Use

JavaScript example

var iferr = require('iferr');

function get_friends_count(id, cb) {
  User.load_user(id, iferr(cb, function(user) {
    user.load_friends(iferr(cb, function(friends) {
      cb(null, friends.length);
    }));
  }));
}

CoffeeScript example

iferr = require 'iferr'

get_friends_count = (id, cb) ->
  User.load_user id, iferr cb, (user) ->
    user.load_friends iferr cb, (friends) ->
      cb null, friends.length

(TODO: document tiferr, throwerr and printerr)

License

MIT