Javascript String wrap(start, end)
String.prototype.wrap = function (start, end) { return this ? start + this + end : this; }; //# sourceMappingURL=StringExtensions.js.map