UNPKG

script-tags

Version:
19 lines (15 loc) 334 B
'use strict'; var cheerio = require('cheerio'); module.exports = function(str) { var attributes = []; var $ = cheerio.load(str); $('script').each(function(i, elem) { var self = $(this); attributes[i] = { attrs: elem.attribs, html: self.html(), text: self.text() }; }); return attributes; };