UNPKG

wordreference-definition-api

Version:

Scrap word definitions from http://www.wordreference.com

10 lines 220 B
const textContent = (el, $) => { for (let child of Array.from($(el).contents())) { if (child.nodeType == 3) { return $(child).text() } } } module.exports = { textContent }