Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Latest commit

 

History

History
7 lines (5 loc) · 345 Bytes

README.md

File metadata and controls

7 lines (5 loc) · 345 Bytes

Homework for BCIT Node.js Course

Adding greyscale filter to some png images.

main.js is the the implementation following instructor's instruction. main2.js is an improved version of main.js, which is trying to reduce the IO ops by skipping writing unzipped data to disk. On my machine, main2.js(125ms) is notably faster than main.js(185ms).