1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 1 1 1 1 |
/* istanbul ignore next */
Eif (!process.browser) {
require("./register");
}
module.exports = require("./browser");
module.exports.he = require("he");
// a bit hacky, but need to expose he to ast/textNode
// so it doesn't get bundled up with the browser
global.paperclip = module.exports;
|