We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec21d6 commit 0b128b3Copy full SHA for 0b128b3
src/helpers.ts
@@ -1,6 +1,6 @@
1
import { ActionSelector, ActionAggregator, ActionFunction } from './types';
2
3
-export const SCHEMA_OPTIONS_SYMBOL = Symbol.for('SchemaOptions');
+export const SCHEMA_OPTIONS_SYMBOL = Symbol('SchemaOptions');
4
5
export function isActionSelector<S, R>(value: any): value is ActionSelector<S, R> {
6
return isObject(value) && value.hasOwnProperty('fn') && value.hasOwnProperty('path');
0 commit comments