@extjs/sencha-cmd-linux-32
Version:
Productivity and performance optimization tool for building applications with Sencha Ext JS and Sencha Touch.
48 lines (34 loc) • 625 B
JavaScript
/*
* Copyright (c) 2012-2016. Sencha Inc.
*/
;
var Fashion = require('./export/Base.js'),
Output = require('./export/Output.js');
class CompressedOutput extends Output {
constructor() {
super();
}
space() {
}
addComment(text) {
}
indent() {
}
unindent() {
}
addln(ln) {
super.add(ln || '');
}
addCommentLn(ln) {
}
indentln(ln) {
this.addln(ln);
}
unindentln(ln) {
this.addln(ln);
}
}
Fashion.apply(CompressedOutput.prototype, {
isCompressed: true
});
module.exports = CompressedOutput;