UNPKG
ditherjs
Version:
latest (0.10.0)
0.10.0
0.9.1
0.3.0
0.2.3
0.2.2
Image dithering library
dpiccone.github.io/ditherjs/
dpiccone/ditherjs
ditherjs
/
jquery.js
10 lines
(8 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
DitherJS
= (
function
(
$
) { $.fn.
ditherJS
=
function
(
options
) {
var
DitherJS
=
require
(
'./lib/client'
);
var
ditherjs =
new
DitherJS
(options); ditherjs.
dither
(
this
.
selector
); }; }( jQuery ));
module
.
exports
=
DitherJS
;