app-decorators
Version:
Collection of useful ES7 Decorators, writtin in ES6, that can be used for building webapps
20 lines (16 loc) • 549 B
JavaScript
System.register(['app-decorators/src/libs/element-to-function'], function (_export, _context) {
"use strict";
var _elementToFunc, removeGutter;
return {
setters: [function (_appDecoratorsSrcLibsElementToFunction) {
_elementToFunc = _appDecoratorsSrcLibsElementToFunction.default;
}],
execute: function () {
_export('removeGutter', removeGutter = String.prototype.removeGutter = function () {
return this.replace(/[\t\n\r]/gm, '');
});
_export('removeGutter', removeGutter);
}
};
});
//# sourceMappingURL=string.js.map