We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 138bcd3 + 73eeaaa commit 64f8ea3Copy full SHA for 64f8ea3
4 files changed
.github/workflows/latest-build.yml
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "1.1.12",
+ "version": "1.1.13",
3
"main": "./src/lib/main.js",
4
"scripts": {
5
"dev": "nodemon ./src/server.js",
src/lib/main.js
@@ -4,4 +4,4 @@ window._r = _r;
6
export default _r;
7
-export { Ryunix};
+export { Ryunix };
src/lib/ryunix/index.js
@@ -253,6 +253,7 @@ class Ryunix {
253
* constructor. If no value is provided, the store will be initialized with a null value.
254
* @returns A hook that creates a new instance of the Store class with an optional initial value.
255
*/
256
+
257
storage(val = null) {
258
return new Store(val).hook();
259
}
0 commit comments