mirror of
https://github.com/nasa/openmct.git
synced 2025-01-10 15:02:53 +00:00
26 lines
478 B
JavaScript
26 lines
478 B
JavaScript
|
/*global define,moment*/
|
||
|
|
||
|
define(
|
||
|
['../lib/moment.min.js'],
|
||
|
function () {
|
||
|
"use strict";
|
||
|
|
||
|
function TelemetryFormatter() {
|
||
|
|
||
|
function formatDomainValue(key, value) {
|
||
|
|
||
|
}
|
||
|
|
||
|
function formatRangeValue(key, value) {
|
||
|
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
formatDomainValue: formatDomainValue,
|
||
|
formatRangeValue: formatRangeValue
|
||
|
};
|
||
|
}
|
||
|
|
||
|
return TelemetryFormatter;
|
||
|
}
|
||
|
);
|