UNPKG
node-image-filter
Version:
latest (1.0.0)
1.0.0
0.1.0
0.0.6
0.0.5
0.0.3
0.0.2
0.0.1
Image Filter Library for nodejs
github.com/haegul/node-image-filter
haegul/node-image-filter
node-image-filter
/
lib
/
utility
/
index.js
8 lines
•
171 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.
validatePixelValue
=
function
(
pixel
) {
if
(pixel <
0
)
return
0
;
else
if
(pixel >
255
)
return
255
;
else
return
pixel; };