File: twitter-streaming/node_modules/ntwitter/lib/utils.js

Recommend this page to a friend!
  Classes of Igor Escobar   Terminal Crossword   twitter-streaming/node_modules/ntwitter/lib/utils.js   Download  
File: twitter-streaming/node_modules/ntwitter/lib/utils.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Terminal Crossword
Generate a crosswords board on a text console
Author: By
Last change:
Date: 2 years ago
Size: 223 bytes
 

Contents

Class file image Download
/* * Merge objects into the first one */ exports.merge = function(defaults) { for(var i = 1; i < arguments.length; i++){ for(var opt in arguments[i]){ defaults[opt] = arguments[i][opt]; } } return defaults; };