get-task.js 96 B

1234567
  1. 'use strict';
  2. function get(name) {
  3. return this._registry.get(name);
  4. }
  5. module.exports = get;