const extract = require('./extract')
module.exports = asyncfunction (js, options) {
// Add a ";" to avoid problems when scripts ends with a line without a ";"// Add a "\n" to avoid problems when scripts end with a commentreturnextract(js, 'src', options, ';\n')
}