handlebars
Version:
Handlebars provides the power necessary to let you build semantic templates effectively with no frustration
15 lines (13 loc) • 343 B
JavaScript
define(
["exports"],
function(__exports__) {
"use strict";
// Build out our basic SafeString type
function SafeString(string) {
this.string = string;
}
SafeString.prototype.toString = SafeString.prototype.toHTML = function() {
return "" + this.string;
};
__exports__["default"] = SafeString;
});