1.0.0 • Published 7 years ago

dom-once v1.0.0

Weekly downloads
4
License
Proprietary
Repository
github
Last release
7 years ago

dom-once

Build Status

.once for DOM Events

Usage

var once = require('dom-once')


once(document.body, 'load', function () {
  console.log('Hello world')
})

API

once(target, type, listener [, useCapture])

Works like target.addEventListener(type, listener, useCapture) / target.removeEventListener(type, listener) just all automagically. No fluf, no fuss, plain and simple

Install

npm install dom-once

License

ISC