Client
Tracker.currentComputation
import { Tracker } from 'meteor/tracker'
Source The current computation, or null
if there isn't one. The current computation is the Tracker.Computation
object created by the innermost active call to Tracker.autorun
, and it's the computation that gains dependencies when reactive data sources are accessed.
Please login to continue.