GillesRasigade/pattern

View on GitHub
src/Mapper/MapperAbstract.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

const MapperInterface = require('./MapperInterface');

class MapperAbstract extends MapperInterface {
  constructor(options) {
    super(options);

    this.options = options || {};
  }
}

module.exports = MapperAbstract;