Skip to content

Instantly share code, notes, and snippets.

@dantman
Created January 9, 2016 05:33
Show Gist options
  • Save dantman/a4fc651b96a3e1fe144b to your computer and use it in GitHub Desktop.
Save dantman/a4fc651b96a3e1fe144b to your computer and use it in GitHub Desktop.
require('is-browser') transform
.transform(transformTools.makeRequireTransform(
{evaluateArguments: true},
(args, opts, cb) => {
if ( args[0] === "is-browser" ) {
return cb(null, 'true');
} else {
return cb();
}
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment