@hedia/test
Advanced tools
Comparing version 3.0.2 to 3.1.0
export function randomString(length) { | ||
const chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; | ||
const chars = "0123456789abcdefghijklmnopqrstuvwxyzæøåABCDEFGHIJKLMNOPQRSTUVWXYZÆØÅ"; | ||
let result = ""; | ||
@@ -4,0 +4,0 @@ for (let i = length; i > 0; --i) { |
{ | ||
"name": "@hedia/test", | ||
"version": "3.0.2", | ||
"version": "3.1.0", | ||
"description": "Tools for testing and reporting", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/hedia-team/test#readme", |
export function randomString(length: number): string { | ||
const chars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; | ||
const chars = "0123456789abcdefghijklmnopqrstuvwxyzæøåABCDEFGHIJKLMNOPQRSTUVWXYZÆØÅ"; | ||
let result = ""; | ||
@@ -4,0 +4,0 @@ for (let i = length; i > 0; --i) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
88448