Revert json conversion
This commit is contained in:
committed by
bl00dymarie
parent
f11eb3d1a1
commit
c3e4fd3f03
+4
-9
@@ -3,8 +3,6 @@ import { getCycleLengthStats } from './cycle-length'
|
|||||||
const LocalDate = joda.LocalDate
|
const LocalDate = joda.LocalDate
|
||||||
const DAYS = joda.ChronoUnit.DAYS
|
const DAYS = joda.ChronoUnit.DAYS
|
||||||
|
|
||||||
const toJSON = (realmObj) => JSON.parse(JSON.stringify(realmObj))
|
|
||||||
|
|
||||||
export default function config(opts) {
|
export default function config(opts) {
|
||||||
let bleedingDaysSortedByDate
|
let bleedingDaysSortedByDate
|
||||||
let cycleStartsSortedByDate
|
let cycleStartsSortedByDate
|
||||||
@@ -16,13 +14,10 @@ export default function config(opts) {
|
|||||||
if (!opts) {
|
if (!opts) {
|
||||||
// we only want to require (and run) the db module
|
// we only want to require (and run) the db module
|
||||||
// when not running the tests
|
// when not running the tests
|
||||||
bleedingDaysSortedByDate = toJSON(
|
bleedingDaysSortedByDate = require('../db').getBleedingDaysSortedByDate()
|
||||||
require('../db').getBleedingDaysSortedByDate()
|
cycleStartsSortedByDate = require('../db').getCycleStartsSortedByDate()
|
||||||
)
|
cycleDaysSortedByDate = require('../db').getCycleDaysSortedByDate()
|
||||||
cycleStartsSortedByDate = toJSON(
|
|
||||||
require('../db').getCycleStartsSortedByDate()
|
|
||||||
)
|
|
||||||
cycleDaysSortedByDate = toJSON(require('../db').getCycleDaysSortedByDate())
|
|
||||||
maxBreakInBleeding = 1
|
maxBreakInBleeding = 1
|
||||||
maxCycleLength = 99
|
maxCycleLength = 99
|
||||||
minCyclesForPrediction = 3
|
minCyclesForPrediction = 3
|
||||||
|
|||||||
Reference in New Issue
Block a user