Skip to content

Commit

Permalink
published v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuri Yuri committed Sep 26, 2023
1 parent 4a97626 commit 759d168
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 54 deletions.
2 changes: 1 addition & 1 deletion lib/load/withSubContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export const withSubContext = <T>(context: MarshalContext, ivar: boolean, action
return object;
};

export const r_object = (context: MarshalContext, ivar = false) :any=> {
export const r_object = (context: MarshalContext, ivar = false): any => {
return withSubContext(context, ivar, context.marshalLoad);
};
100 changes: 50 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"bin": "dist/index.js",
"main": "dist/index.js",
"name": "ts-marshal",
"version": "0.0.6",
"version": "0.0.7",
"description": "Typescript library to deserialize Ruby Marshal-i-zed objects",
"author": {
"email": "dont-email@communityscriptproject.com",
Expand All @@ -15,7 +15,13 @@
"build": "tsc",
"test": "jest"
},
"keywords": ["ruby", "marshal", "dump", "load", "typescript"],
"keywords": [
"ruby",
"marshal",
"dump",
"load",
"typescript"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^28.1.1",
Expand All @@ -42,4 +48,4 @@
"lib/**/*",
"tsconfig.json"
]
}
}

0 comments on commit 759d168

Please sign in to comment.