Code coverage report for lib/node.js

Statements: 100% (5 / 5)      Branches: 100% (2 / 2)      Functions: 100% (0 / 0)      Lines: 100% (5 / 5)      Ignored: 1 branch     

All files » lib/ » node.js
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;