1 parent da77c47 commit 703564bCopy full SHA for 703564b
3 files changed
Readme.md
@@ -33,3 +33,7 @@ randomString(10) // This will generate a random string with a length of 10. The
33
34
// If the input was empty the length of string will be selected randomly between 1-20
35
```
36
+
37
+## Demo
38
39
+You can check the [working demo](https://runkit.com/smakss/random-string) in runkit.
index.mjs
@@ -1,3 +1,3 @@
1
-'use strict'
2
-import randomString from './index.cjs'
3
-export default randomString
+'use strict';
+import randomString from './index.cjs';
+export default randomString;
package.json
@@ -1,6 +1,6 @@
{
"name": "@smakss/random-string",
- "version": "1.0.8",
+ "version": "1.0.9",
4
"description": "Generates random dummy string.",
5
"type": "module",
6
"main": "index.cjs",
0 commit comments