Guest User

Untitled

a guest
Feb 14th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. module.exports = {
  2. addTogether: function(x,y){
  3. return x + y
  4. }, doSomethingWithObject: function(object){
  5. object.newKey = "easy AF";
  6. return object;
  7. }, simpleValue: 'also works'
  8. };
  9. require('make-runnable');
Add Comment
Please, Sign In to add comment