/
TON618OFF
/
FinalPWHTML
Обзор
Документация
Войти
/
TON618OFF
/
FinalPWHTML
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/@jest/core/build/TestWatcher.js
64 строки
1 KB
TON618OFF
не ну это ваще
23 июн 2024, 00:30
23 июн 2024, 00:30
e27ae20
Код
Авторство
О чём код?
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); exports.default = void 0; function _emittery() { const data = _interopRequireDefault(require('emittery')); _emittery = function () { return data; }; return data; } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : {default: obj}; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } class TestWatcher extends _emittery().default { constructor({isWatchMode}) { super(); _defineProperty(this, 'state', void 0); _defineProperty(this, '_isWatchMode', void 0); this.state = { interrupted: false }; this._isWatchMode = isWatchMode; } async setState(state) { Object.assign(this.state, state); await this.emit('change', this.state); } isInterrupted() { return this.state.interrupted; } isWatchMode() { return this._isWatchMode; } } exports.default = TestWatcher;