@vpmedia/phaser 1.1.1 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,23 +0,0 @@
1
- /**
2
- * @author Andras Csizmadia <andras@vpmedia.hu>
3
- * @author Richard Davey <rich@photonstorm.com>
4
- * @copyright Copyright (c) 2018-present Richard Davey, Photon Storm Ltd., Andras Csizmadia <andras@vpmedia.hu> (www.vpmedia.hu)
5
- */
6
-
7
- /**
8
- * TBD
9
- *
10
- * @returns {string} TBD
11
- */
12
- export function generateID() {
13
- return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
14
- }
15
-
16
- /**
17
- * TBD
18
- *
19
- * @returns {string} TBD
20
- */
21
- export function generateShaderID() {
22
- return (`${generateID()}${generateID()}-${generateID()}`).toLowerCase();
23
- }