Update thank you list

Add perf test for normalise
This commit is contained in:
Lovell Fuller
2015-04-19 21:09:19 +01:00
parent a0655806de
commit 6fc62d39c9
3 changed files with 18 additions and 2 deletions

View File

@@ -311,6 +311,18 @@ async.series({
}
});
}
}).add('sharp-normalise', {
defer: true,
fn: function(deferred) {
sharp(inputJpgBuffer).resize(width, height).normalise().toBuffer(function(err, buffer) {
if (err) {
throw err;
} else {
assert.notStrictEqual(null, buffer);
deferred.resolve();
}
});
}
}).add('sharp-greyscale', {
defer: true,
fn: function(deferred) {