UNPKG

@aspectus/progress-promise-proxy

Version:

Simple Promise proxy that adds `.progress` handler registry to promise object.

12 lines (9 loc) 278 B
import { createProxy } from '@aspectus/promise-proxy'; export default createProxy({ progress(callback) { if (this.$data.progressEmitter && this.$data.progressEmitter.on) { return this.$data.progressEmitter.on('progress', callback); } return this; }, });