UNPKG
wordreference-definition-api
Version:
latest (3.0.2)
3.0.2
3.0.1
3.0.0
2.0.3
2.0.2
2.0.1
2.0.0
1.0.0
Scrap word definitions from http://www.wordreference.com
wordreference-definition-api
/
src
/
utils
/
jquery.js
10 lines
•
220 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
textContent
= (
el, $
) => {
for
(
let
child
of
Array
.
from
($(el).
contents
())) {
if
(child.
nodeType
==
3
) {
return
$(child).
text
() } } }
module
.
exports
= { textContent }