UNPKG

logkitten

Version:

Stream Android and iOS logs without Android Studio or Console.app, with programmatic Node.js API for log analysis.

15 lines (14 loc) 399 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PriorityUtils = void 0; var _constants = require("./constants"); // Helper functions const PriorityUtils = exports.PriorityUtils = { fromName(name) { const value = _constants.Priority[name]; return typeof value === 'number' ? value : _constants.Priority.Debug; } }; //# sourceMappingURL=utils.js.map