config.js 201 B

1234567891011
  1. var Formatter = require('should-format').Formatter;
  2. var config = {
  3. checkProtoEql: false,
  4. getFormatter: function(opts) {
  5. return new Formatter(opts || config);
  6. }
  7. };
  8. module.exports = config;