UNPKG
@joint/react
Version:
alpha (1.0.0-alpha.1)
latest (1.0.0-alpha.5)
1.0.0-alpha.5
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
1.0.0-alpha.0
0.1.1-alpha.1
React bindings and hooks for JointJS to build interactive diagrams and graphs.
jointjs.com
@joint/react
/
src
/
utils
/
noop-selector.ts
10 lines
(9 loc)
•
216 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Application selector that does nothing. *
@param
value - The value to return. *
@returns
The value passed as an argument. *
@group
Utils */
export
function
noopSelector
<
T
>(
value: T
):
T
{
return
value; }