mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
chore(snapshot): remove l and o from id generation
This commit is contained in:
@ -92,7 +92,7 @@ module.exports = function(gulp, argv, buildConfig) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function generateTestId() {
|
function generateTestId() {
|
||||||
var chars = 'abcdefghijklmnopqrstuvwxyz';
|
var chars = 'abcdefghijkmnpqrstuvwxyz';
|
||||||
var id = chars.charAt(Math.floor(Math.random() * chars.length));
|
var id = chars.charAt(Math.floor(Math.random() * chars.length));
|
||||||
chars += '0123456789';
|
chars += '0123456789';
|
||||||
while (id.length < 3) {
|
while (id.length < 3) {
|
||||||
|
Reference in New Issue
Block a user