mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
20 lines (16 loc) • 517 B
JavaScript
import Emitter from 'tiny-emitter'
/**
* Extend given object with emitter functions `on`, `off`, `once`, `emit`
* @param {Object} obj
* @return {Object} obj
*/
export function mixin (obj) {
// create event emitter
const emitter = new Emitter()
// bind methods to obj (we don't want to expose the emitter.e Array...)
obj.on = emitter.on.bind(emitter)
obj.off = emitter.off.bind(emitter)
obj.once = emitter.once.bind(emitter)
obj.emit = emitter.emit.bind(emitter)
return obj
}