a zip code crypto-currency system good for red ONLY
Eric Foster d5378345de connection between front end and database пре 6 година
..
index.js connection between front end and database пре 6 година
package.json connection between front end and database пре 6 година
readme.md connection between front end and database пре 6 година

readme.md

inline-process-browser

Browserify transform which turns any reference to process.browser into true.

Can remove non-browser code when combined with unreachable-branch-transform

turns

if (process.browser) {
  //something
}

into

if (true) {
  //something
}