UNPKG

983 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.randomString = randomString;
7/*
8Copyright 2018 New Vector Ltd
9
10Licensed under the Apache License, Version 2.0 (the "License");
11you may not use this file except in compliance with the License.
12You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16Unless required by applicable law or agreed to in writing, software
17distributed under the License is distributed on an "AS IS" BASIS,
18WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19See the License for the specific language governing permissions and
20limitations under the License.
21*/
22
23function randomString(len) {
24 var ret = "";
25 var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
26
27 for (var i = 0; i < len; ++i) {
28 ret += chars.charAt(Math.floor(Math.random() * chars.length));
29 }
30
31 return ret;
32}
33//# sourceMappingURL=randomstring.js.map
\No newline at end of file