(unit)
| 465 | const EON = ERA * 10; |
| 466 | |
| 467 | function Floorer(unit) { |
| 468 | return function(a_big_year) { |
| 469 | var year = a_big_year.getTime(); |
| 470 | return new BigYear(Math.floor(year / unit) * unit); |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | // cosmological scales |
| 475 | export const BIG_DATE_SCALES = [ // ( name, units_per_tick, flooring function ) |