Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fsrs.js

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fsrs.js - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"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)
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc