UNPKG
@devzatokio/vue-toaster
Version:
latest (0.0.1)
0.0.1
Vue.js toaster notification
github.com/DevZatokio/vue-toaster
DevZatokio/vue-toaster
@devzatokio/vue-toaster
/
src
/
helpers
/
remove-element.js
10 lines
(8 loc)
•
167 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
removeElement = (el) => {
if
(
typeof
el.
remove
!==
'undefined'
) { el.
remove
() }
else
{ el.parentNode.removeChild(el) } } export { removeElement }