Skip to content

An (opinionated) collection of Ruby'ish polyfills for JavaScript

Notifications You must be signed in to change notification settings

Legitcode/rubyfill

Repository files navigation

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

About

An (opinionated) collection of Ruby'ish polyfills for JavaScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published