UNPKG

@controlla/cli

Version:

Command line interface for rapid Controlla projects development

7 lines (4 loc) 250 B
import Vue from 'vue' Vue.filter('first4Chars', str => str.substring(0, 4)) Vue.filter('last4Chars', str => str.substring(str.length - 4)) Vue.filter('truncate', (text, stop = 20) => text && text.slice(0, stop) + (text.length > stop ? '...' : ''))