Code coverage report for master/quote.js

Statements: 100% (3 / 3)      Branches: 100% (2 / 2)      Functions: 100% (1 / 1)      Lines: 100% (3 / 3)      Ignored: none     

All files » master/ » quote.js
1 2 3 4 5 61   1 4    
var surround = require('./surround');
 
module.exports = function quote(str, quoteChar) {
  return surround(str, quoteChar || '"');
};