Legitcode / rubyfill

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#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


Languages

Language:JavaScript 100.0%