OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
_backup
/
tinymce
/
tinymce
/
src
/
core
/
main
/
ts
/
util
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/20/2020 05:44:43 AM
rwxr-xr-x
📄
ArrUtils.ts
2.39 KB
02/20/2020 05:44:46 AM
rw-r--r--
📄
LazyEvaluator.ts
547 bytes
02/20/2020 05:44:46 AM
rw-r--r--
📄
Predicate.ts
770 bytes
02/20/2020 05:44:47 AM
rw-r--r--
📄
Private.ts
1.15 KB
02/20/2020 05:44:47 AM
rw-r--r--
📄
Quirks.ts
26.03 KB
02/20/2020 05:44:48 AM
rw-r--r--
📄
Uuid.ts
667 bytes
02/20/2020 05:44:48 AM
rw-r--r--
Editing: Uuid.ts
Close
/** * Copyright (c) Tiny Technologies, Inc. All rights reserved. * Licensed under the LGPL or a commercial license. * For LGPL see License.txt in the project root for license information. * For commercial licenses see https://www.tiny.cloud/ */ /** * Generates unique ids. * * @class tinymce.util.Uuid * @private */ let count = 0; const seed = function () { const rnd = function () { return Math.round(Math.random() * 0xFFFFFFFF).toString(36); }; const now = new Date().getTime(); return 's' + now.toString(36) + rnd() + rnd() + rnd(); }; const uuid = function (prefix) { return prefix + (count++) + seed(); }; export default { uuid };