-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f86bb5a
commit c36d840
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import sharp from "sharp"; | ||
|
||
export function loadImageFromDisk(path: string) { | ||
return sharp(path) | ||
} | ||
|
||
export function loadImageFromBuffer(buf: Buffer) { | ||
return sharp(buf) | ||
} | ||
|
||
/** | ||
* This function calculates the cartesian product of two or more array and is straight from stackoverflow ;) | ||
* Should be replaced with something more legible but works for now. | ||
* @internal | ||
*/ | ||
export const cartesian = (...a: any[]) => a.reduce((a: any, b: any) => a.flatMap((d: any) => b.map((e: any) => [d, e].flat()))) |