You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
209 B
JavaScript

"use strict";
const calculateThumbnailSize = require("./");
let calculated = calculateThumbnailSize({
sourceWidth: 200,
sourceHeight: 100,
targetWidth: 80,
targetHeight: 60
});
console.log(calculated);