UNPKG
@kissflow/form-field-scripts
Version:
canary (0.0.1-beta.2)
latest (0.0.7)
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.1-beta.2
0.0.1-beta.1
Scripts to serve, build, lint, test, etc. a Kissflow's custom form field project.
@kissflow/form-field-scripts
/
src
/
form-field-webpack-plugin
/
utils.js
10 lines
(8 loc)
•
132 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
isPlural
= (
number
) => {
if
(
number
>
1
) {
return
's'
}
else
{
return
''
} }
export
{ isPlural }