module.exports.takeNumberOnly = function (text) { let number = text.match(/\d+/)[0]; return number }