You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 30, 2020. It is now read-only.
//The code below this commented line does not minify,instead is returned as a semi colon
String.prototype.compose = (function () {
var re = /{{(.+?)}}/g;
return function (o) {
return this.replace(re, function (_, k) {
return typeof o[k] !== 'undefined' ? o[k] : '';
});
};
}());
Actually code breaks if it encounters a single line comment