xref: /third_party/node/deps/npm/node_modules/are-we-there-yet/lib/tracker-base.js
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/deps/npm/node_modules/are-we-there-yet/lib/
11cb0ef41Sopenharmony_ci'use strict'
21cb0ef41Sopenharmony_ciconst EventEmitter = require('events')
31cb0ef41Sopenharmony_ci
41cb0ef41Sopenharmony_cilet trackerId = 0
51cb0ef41Sopenharmony_ciclass TrackerBase extends EventEmitter {
61cb0ef41Sopenharmony_ci  constructor (name) {
71cb0ef41Sopenharmony_ci    super()
81cb0ef41Sopenharmony_ci    this.id = ++trackerId
91cb0ef41Sopenharmony_ci    this.name = name
101cb0ef41Sopenharmony_ci  }
111cb0ef41Sopenharmony_ci}
121cb0ef41Sopenharmony_ci
131cb0ef41Sopenharmony_cimodule.exports = TrackerBase
14

Indexes created Thu Nov 07 10:32:03 CST 2024