This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
OwlBoard/src/utils/ldb.utils.js
2023-01-05 21:00:39 +00:00

18 lines
386 B
JavaScript

const log = require('../utils/log.utils'); // Log Helper
async function checkCrs(input){
// Check whether CRS is valid
// if not, try to get tiploc
// Until implemented always return true
return true
}
async function convertTiploc(input){
// Convert TIPLOC to CRS with DBLookup
return input
}
module.exports = {
checkCrs,
convertTiploc
}