Code coverage report for dist/cjs/handlebars/safe-string.js

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

All files » dist/cjs/handlebars/ » safe-string.js
1 2 3 4 5 6 7 8 9 10 11    1 12     1 12     1
"use strict";
// Build out our basic SafeString type
function SafeString(string) {
  this.string = string;
}
 
SafeString.prototype.toString = function() {
  return "" + this.string;
};
 
exports["default"] = SafeString;