'use strict';
// expect that this will take in a pdf textfunctionwmur (text) {
console.log('asdf')
}
var options = {
'wmur': wmur,
}
functionmain (ref) {
var text = ref.text;
var station = ref.station;
return options[station](text);
}
module.exports = main;