We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a94e1a8 commit b12e5fdCopy full SHA for b12e5fd
1 file changed
assets/js/googlesitekit/data/utils.js
@@ -28,6 +28,16 @@ import memize from 'memize';
28
*/
29
import { createRegistryControl, createRegistrySelector } from '@wordpress/data';
30
31
+/**
32
+ * Symbol used to indicate that a global data value was not found.
33
+ *
34
+ * @since n.e.x.t
35
+ * @private
36
+ */
37
+export const GLOBAL_DATA_VALUE_NOT_FOUND = Symbol(
38
+ 'GLOBAL_DATA_VALUE_NOT_FOUND'
39
+);
40
+
41
const GET_REGISTRY = 'GET_REGISTRY';
42
const AWAIT = 'AWAIT';
43
@@ -432,10 +442,6 @@ export function createValidatedAction( validate, actionCreator ) {
432
442
};
433
443
}
434
444
435
-export const GLOBAL_DATA_VALUE_NOT_FOUND = Symbol(
436
- 'GLOBAL_DATA_VALUE_NOT_FOUND'
437
-);
438
-
439
445
/**
440
446
* Gets a global data object by property name and optional child property name.
441
447
*
0 commit comments