mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-26 23:10:18 +00:00
push all website files
This commit is contained in:
28
website/functions/node_modules/power-assert-context-formatter/lib/string-writer.js
generated
vendored
Normal file
28
website/functions/node_modules/power-assert-context-formatter/lib/string-writer.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
function spacerStr (len) {
|
||||
var str = '';
|
||||
for(var i = 0; i < len; i += 1) {
|
||||
str += ' ';
|
||||
}
|
||||
return str;
|
||||
}
|
||||
|
||||
function StringWriter (config) {
|
||||
this.lines = [];
|
||||
this.lineSeparator = config.lineSeparator;
|
||||
this.regex = new RegExp(this.lineSeparator, 'g');
|
||||
this.spacer = spacerStr(config.outputOffset);
|
||||
}
|
||||
|
||||
StringWriter.prototype.write = function (str) {
|
||||
this.lines.push(this.spacer + str.replace(this.regex, this.lineSeparator + this.spacer));
|
||||
};
|
||||
|
||||
StringWriter.prototype.toString = function () {
|
||||
var str = this.lines.join(this.lineSeparator);
|
||||
this.lines.length = 0;
|
||||
return str;
|
||||
};
|
||||
|
||||
module.exports = StringWriter;
|
Reference in New Issue
Block a user