chain.js 221 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 var underscore = require('./underscore.js'); // Start chaining a wrapped Underscore object. function chain(obj) { var instance = underscore(obj); instance._chain = true; return instance; } module.exports = chain;