Skip to content

Instantly share code, notes, and snippets.

@marlun
Last active September 20, 2016 04:14
Show Gist options
  • Save marlun/adc8ce43fdc3b502c954cebe20194f68 to your computer and use it in GitHub Desktop.
Save marlun/adc8ce43fdc3b502c954cebe20194f68 to your computer and use it in GitHub Desktop.
Use less ES6
var defaults = require('lodash.defaults');
function addChat(options) {
var payload = defaults(options, {
id: cusid(),
msg: '',
user: 'Anonymous',
timeStamp: Date.now(),
});
return {
type: ADD_CHAT,
payload: payload,
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment