Skip to content

Instantly share code, notes, and snippets.

View patricknowlan's full-sized avatar

Patrick Knowlan patricknowlan

View GitHub Profile
@patricknowlan
patricknowlan / Phone Number Filter - Angular
Created March 15, 2016 15:38
Phone number filter, removes special characters, removes spaces, returns "N/A" if no phone number. For US phone numbers only.
//Example of how to use the filter
<span> {{vm.phone_number | phonenumber}}</span>
//Example of how to add the filter
(function() {
'use strict';
angular
@patricknowlan
patricknowlan / Create Cookie - Dev Console
Created March 14, 2016 18:53
Function to create a cookie via the browser dev console. Just update, copy, and paste.