UNPKG
@twilio-paste/paste-reakit-fork
Version:
latest (1.4.1)
1.4.1
Forked Reakit that addresses SSR hydration issues
twilio-labs/paste-reakit
@twilio-paste/paste-reakit-fork
/
src
/
Form
/
__utils
/
formatInputName.ts
5 lines
(4 loc)
•
135 B
text/typescript
View Raw
1
2
3
4
5
export
function
formatInputName
(
name: any, separator =
"."
) {
if
(
Array
.
isArray
(name))
return
name.
join
(separator);
return
name; }