0.0.7 • Published 8 years ago

legit-rubyfill v0.0.7

Weekly downloads
9
License
ISC
Repository
github
Last release
8 years ago

#Rubyfill ##A collection of Ruby like polyfills Designed to make your javascript programming life happier

##View All Methods

##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]