GeoKnow/Jassa-Core

View on GitHub
lib/sponate/binding_mapper/BindingMapper.js

Summary

Maintainability
A
0 mins
Test Coverage
var Class = require('../../ext/Class');

var BindingMapper = Class.create({
    map: function(binding, rowId) {
        throw new Error('Not overridden');
    }
});

module.exports = BindingMapper;