usage 155 B

12345678
  1. require('zombie/webbrowser').openPrivateWindow('about:')
  2. .then(window => {
  3. console.log(window.uri);
  4. })
  5. .catch(e => {
  6. console.exception(e); // failed
  7. });