@yookue/ts-lang-utils
    Preparing search index...

    Function randomString

    • Returns a random string that between the length range

      Parameters

      • OptionalminLength: number

        the min length, inclusive

      • OptionalmaxLength: number

        the max length, exclusive

      • characters: string = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'

        the source characters to be generated from

      Returns undefined | string

      a random string that between the length range

      David Hsing

      randomString(8);