UNPKG

wabi

Version:

Small yet an efficient JavaScript library for building UI with data binding.

13 lines (10 loc) 259 B
const selectElementContents = (node) => { const range = document.createRange() range.selectNodeContents(node) const selection = window.getSelection() selection.removeAllRanges() selection.addRange(range) } export { selectElementContents }