jsfitsio
Version:
FITS I/O javascript library.
28 lines • 597 B
JavaScript
/**
* Summary. (bla bla bla)
*
* Description. (bla bla bla)
*
* @link github https://github.com/fab77/FITSParser
* @author Fabrizio Giordano <fabriziogiordano77@gmail.com>
*/
export class FITSHeaderItem {
_key = "";
_value = "";
_comment = "";
constructor(key, value, comment) {
this._key = key;
this._value = value;
this._comment = comment;
}
get key() {
return this._key;
}
get comment() {
return this._comment;
}
get value() {
return this._value;
}
}
//# sourceMappingURL=FITSHeaderItem.js.map