var re = require('regex-extract');
module.exports = function(text) {
var pattern = /Supply Services[\s\S]*Total Supply Services.*$/m;
var matches = text.match(pattern);
if (!matches) {
// no supplier charges whatsoever, let alone other chargesreturnnull;
}
return matches[0];
};