Fooidge / PleaseJS

JavaScript Library for creating random pleasing colors and color schemes
2.28k stars 159 forks source link

Account for 'undefined' or 'null' base_color values in make_color. #55

Open solomon-gumball opened 9 years ago

solomon-gumball commented 9 years ago

Allows for undefined or null values to be passed to make_color, which was previously throwing an error.

Useful for this kind of thing:

// baseColor may or may not be defined

please.make_color({
    colors_returned: 10,
    base_color: baseColor
});