UNPKG
vue-filter2
Version:
latest (0.1.6)
0.1.6
0.1.4
0.1.3
0.1.2
0.1.1
A collection of Vue.js filters
github.com/bum/vue-filters
bum/vue-filters
vue-filter2
/
src
/
filters
/
string
/
lowercase.js
12 lines
(9 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ isNotEmpty }
from
'../util'
/** * Converts a string to lowercase * * ('AbC') => 'abc' */
export
const
lowercase
= (
val
) =>
isNotEmpty
(val) ? val.
toString
().
toLowerCase
() :
''