UNPKG

204 BJavaScriptView Raw
1/* @flow */
2
3const getStateKey = function(elementKey: ?string): string {
4 return elementKey === null || elementKey === undefined
5 ? 'main'
6 : elementKey.toString();
7};
8
9export default getStateKey;