Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / handlebars / lib / handlebars / safe-string.js
1 // Build out our basic SafeString type
2 function SafeString(string) {
3   this.string = string;
4 }
5
6 SafeString.prototype.toString = SafeString.prototype.toHTML = function() {
7   return '' + this.string;
8 };
9
10 export default SafeString;