UNPKG

jsfakeit

Version:

![alt text](https://raw.githubusercontent.com/Anirban20001962/jsfakeit/main/logo.png)

9 lines (8 loc) 299 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.imageUrl = void 0; /** Generate a random url for a given width and height */ const imageUrl = (width = 200, height = 300) => { return `https://picsum.photos/${width}/${height}`; }; exports.imageUrl = imageUrl;