zds-pickers 3.9.17 → 3.9.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/midi/statuses.js +1 -1
- package/package.json +1 -1
package/dist/midi/statuses.js
CHANGED
|
@@ -21,7 +21,7 @@ var statuses = [
|
|
|
21
21
|
{ value: STATUS_PITCH_WHEEL, label: 'Pitch Wheel' }];
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
var getStatusLabel = function getStatusLabel(val) {return statuses.filter(function (_ref) {var value = _ref.value;return value === val;})[0]
|
|
24
|
+
var getStatusLabel = function getStatusLabel(val) {var _statuses$filter$;return ((_statuses$filter$ = statuses.filter(function (_ref) {var value = _ref.value;return value === val;})[0]) === null || _statuses$filter$ === void 0 ? void 0 : _statuses$filter$.label) || '???';};exports.getStatusLabel = getStatusLabel;
|
|
25
25
|
|
|
26
26
|
var combineStatus = function combineStatus(channel, status) {return channel | status << 4;};exports.combineStatus = combineStatus;
|
|
27
27
|
|