App.js 246 B

123456789101112
  1. 'use strict';
  2. var SolarSystem = require('./SolarSystem');
  3. var global = window.lagrange = window.lagrange || {};
  4. global.planet_positions = module.exports = {
  5. getPositions: function(userDate){
  6. return SolarSystem.getPositions(userDate);
  7. }
  8. };