Files
Mario Romano 07807e7bc3 # add dist
2016-04-21 11:56:31 +01:00

348 B

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
}