Sun calculation js library which is fully based on formula from http://aa.quae.nl/en/reken/zonpositie.html
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
796 B
43 lines
796 B
'use strict';
|
|
|
|
/**
|
|
* Dependencies.
|
|
*/
|
|
|
|
const fs = require('fs');
|
|
|
|
/**
|
|
* Export `getOptions`.
|
|
*/
|
|
|
|
module.exports = getOptions;
|
|
|
|
/**
|
|
* Get options.
|
|
*/
|
|
|
|
function getOptions () {
|
|
if (process.argv.length === 3 && (process.argv[2] === '-h' || process.argv[2] === '--help')) {
|
|
return;
|
|
}
|
|
|
|
const optsPath = process.argv.indexOf('--opts') === -1
|
|
? 'test/mocha.opts'
|
|
: process.argv[process.argv.indexOf('--opts') + 1];
|
|
|
|
try {
|
|
const opts = fs.readFileSync(optsPath, 'utf8')
|
|
.replace(/\\\s/g, '%20')
|
|
.split(/\s/)
|
|
.filter(Boolean)
|
|
.map(value => value.replace(/%20/g, ' '));
|
|
|
|
process.argv = process.argv
|
|
.slice(0, 2)
|
|
.concat(opts.concat(process.argv.slice(2)));
|
|
} catch (err) {
|
|
// ignore
|
|
}
|
|
|
|
process.env.LOADED_MOCHA_OPTS = true;
|
|
}
|
|
|