Guest User

Untitled

a guest
Jul 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. var serialize = require('node-serialize');
  2.  
  3. x = {
  4. test : function(){ return 'hi'; }
  5. };
  6.  
  7. console.log("Serialized: \n" + serialize.serialize(y));
  8.  
  9.  
  10. /*
  11. "_$$ND_FUNC$$_function (){ return 'hi'; }()"
  12. */
Add Comment
Please, Sign In to add comment