File: emptyEl.js

package info (click to toggle)
greasemonkey 2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,820 kB
  • sloc: xml: 171; makefile: 10
file content (5 lines) | stat: -rw-r--r-- 119 bytes parent folder | download | duplicates (2)
1
2
3
4
5
const EXPORTED_SYMBOLS = ['emptyEl'];

function emptyEl(el) {
  while (el.firstChild) el.removeChild(el.firstChild);
}