UNPKG
react-jsf
Version:
latest (1.3.2)
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
JSF Compliant React Components
github.com/denny99/react-jsf
denny99/react-jsf
react-jsf
/
src
/
jsf
/
superclass
/
Converter.js
20 lines
(18 loc)
•
311 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export
default
class
Converter
{
/** * *
@param
{
string
}
value
*
@return
{
object
} */
getAsObject
(
value
) {
throw
new
Error
(
'not yet implemented'
); };
/** * *
@param
{
object
}
value
*
@return
{
string
} */
getAsString
(
value
) {
throw
new
Error
(
'not yet implemented'
); } }