Skip to content

Instantly share code, notes, and snippets.

View sandman21dan's full-sized avatar

Daniel Perez sandman21dan

  • ComplyAdvantage
View GitHub Profile
@sandman21dan
sandman21dan / title-case-filter.js
Last active April 29, 2016 09:53 — forked from jeffjohnson9046/title-case-filter.js
A title-case filter for AngularJs
(function() {
'use strict';
angular
.module('appName')
.filter('titlecase', titlecase);
function titlecase() {
return function (input) {
var smallWords = /^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|vs?\.?|via)$/i;