Skip to content

Commit

Permalink
Declared cache and ready to implement
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhang03 committed Jun 10, 2024
1 parent f3a4ae9 commit b369bc0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/metadata/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export default class JsPsychMetadata {
*/
private variables: VariablesMap;

private cache: {};

/**
* Creates an instance of JsPsychMetadata while passing in JsPsych object to have access to context
* allowing it to access the screen printing information.
Expand All @@ -57,6 +59,7 @@ export default class JsPsychMetadata {
this.setMetadataField("description", "Dataset generated using JsPsych");
this.authors = new AuthorsMap();
this.variables = new VariablesMap();
this.cache = {};
}

/**
Expand Down

0 comments on commit b369bc0

Please sign in to comment.