Skip to content

Instantly share code, notes, and snippets.

@andrerpena
Created July 13, 2016 17:05
Show Gist options
  • Save andrerpena/a53aaea0c10762c815de542386d37dd8 to your computer and use it in GitHub Desktop.
Save andrerpena/a53aaea0c10762c815de542386d37dd8 to your computer and use it in GitHub Desktop.
export horseman from ''node-horseman' // no ES2015
// é equivalente a
module.exports = { horseman: require('node-horseman'); };
// que é equivalente a
module.exports.horseman = require('node-horseman');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment