Code coverage report for monolog\lib\formatter\AbstractFormatter.js

Statements: 63.64% (7 / 11)      Branches: 100% (0 / 0)      Functions: 40% (2 / 5)      Lines: 63.64% (7 / 11)      Ignored: none     

All files » monolog\lib\formatter\ » AbstractFormatter.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28    1   1 1   1       1             1       1          
// Generated by CoffeeScript 1.6.3
"use strict";
var AbstractFormatter;
 
AbstractFormatter = (function() {
  function AbstractFormatter() {}
 
  AbstractFormatter.prototype.format = function(record) {
    throw "not implemented";
  };
 
  AbstractFormatter.prototype.formatBatch = function(records) {
    var _this = this;
    return records.map(function(r) {
      return _this.format(r);
    }).join();
  };
 
  return AbstractFormatter;
 
})();
 
module.exports = AbstractFormatter;
 
/*
//@ sourceMappingURL=AbstractFormatter.map
*/