UNPKG

cdf

Version:

A library for creating oldschool demo-like animations with JavaScript

6 lines 143 B
var color = { rgb: function(r,g,b,a){ r=r||0; g=r||0; b = b||0; a=(a===undefined)?1:a; return 'rgba('+[r,g,b,a].join(',')+')'; } };