We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c47f48f commit bc41e35Copy full SHA for bc41e35
packages/babel-cli/src/babel/sample.min.js
@@ -1 +1,8 @@
1
console.writeline("hello, world!")
2
+
3
+function insecurePassword(): string {
4
+ // BAD: the random suffix is not cryptographically secure
5
+ const suffix = Math.random();
6
+ const password = "myPassword" + suffix;
7
+ return password;
8
+}
0 commit comments