Eric Foster 35b96bc934 initial commit před 6 roky
..
index.js initial commit před 6 roky
package.json initial commit před 6 roky
readme.md initial commit před 6 roky

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
}