projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
54ae6f8c9fd3c33aec75a91d4a3baf09e12783ca
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var generated = Object.create(null)
4
5
, random = Math.random;
6
7
module.exports = function () {
8
var str;
9
do { str = random().toString(36).slice(2); } while (generated[str]);
10
return str;
11
};