#Rubyfill ##A collection of Ruby like polyfills Designed to make your javascript programming life happier
##Installation
npm install --save legit-rubyfill
###Including the library
import 'legit-rubyfill' //whole library
import 'legit-rubyfill/array' //all array methods
import 'legit-rubyfill/string'
import 'legit-rubyfill/array/compact' //single method
##Example
Remove all undefined, null, or empty strings from an array
[1, 2, undefined, 3, "", null, 4].compact
-> [1, 2, 3, 4]