Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
390 B

  1. var traverse = require('traverse');
  2. var id = 54;
  3. var callbacks = {};
  4. var obj = { moo : function () {}, foo : [2,3,4, function () {}] };
  5. var scrubbed = traverse(obj).map(function (x) {
  6. if (typeof x === 'function') {
  7. callbacks[id] = { id : id, f : x, path : this.path };
  8. this.update('[Function]');
  9. id++;
  10. }
  11. });
  12. console.dir(scrubbed);
  13. console.dir(callbacks);