Guest User

Untitled

a guest
Jan 3rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // Welcome! require() some modules from npm (like you were using browserify)
  2. // and then hit Run Code to run your code on the right side.
  3. // Modules get downloaded from browserify-cdn and bundled in your browser.
  4.  
  5. var timm = require('timm');
  6. var obj = {foo: ''};
  7. var newObj = timm.setIn(obj, ['foo', 'bar'], 'baz');
  8. console.log('the object is', newObj);
Add Comment
Please, Sign In to add comment