innerText shim for browsers, that don't support it.
npm install inner-text-shiminnerText shim for browsers, that don't support it.
This module is meant to use in the browser with browserify.
if you need a polyfill, use: innerText-polyfill
all innerText does is get the el.innerText from the element, even when the browser does not support it.
you can't set the innerText with this module.
`` hellojs
var innerText = require('inner-text-shim');
var el = document.querySelector('body');
el.innerHTML = '
welt'
var text = innerText(el)
/* text ->
"hello
welt"
/*
``