UNPKG

vue-filter2

Version:

A collection of Vue.js filters

12 lines (9 loc) 203 B
import { isNotEmpty } from '../util' /** * Converts a string to lowercase * * ('AbC') => 'abc' */ export const lowercase = (val) => isNotEmpty(val) ? val.toString().toLowerCase() : ''