Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "fsrs.js", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "FSRS (free spaced repetition scheduler) algorithm, based on the DSR model proposed by Piotr Wozniak, author of SuperMemo", | ||
@@ -5,0 +5,0 @@ "main": "fsrs.js", |
@@ -10,10 +10,12 @@ JavaScript module of Free Spaced Repetition Scheduler algorithm, based on the [DSR model](https://supermemo.guru/wiki/Two_components_of_memory) proposed by [Piotr Wozniak](https://supermemo.guru/wiki/Piotr_Wozniak), author of SuperMemo. | ||
```js | ||
const fsrs = require('fsrs.js'); | ||
const fsrs = require("fsrs.js") | ||
//input data | ||
var cardData={id:'idname'}, | ||
grade=-1, //Grade `-1` means learn new card,and `0, 1, 2` means review old card. | ||
globalData={}; | ||
//input data | ||
var cardData={id:'id'}, | ||
grade=-1,//Grade `-1` means learn new card,and `0, 1, 2` means review old card. | ||
globalData=null; | ||
fsrs(cardData,grade,globalData) //Return {cardData,globalData}. You can save this output data and use it as input data the next time you update grade. | ||
var outputData = fsrs(cardData,grade,globalData)//Return {cardData,globalData}. You can save this output data and use it as input data the next time you update grade. | ||
console.log(outputData) | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8414
20