Getting StartedTypes Doodler is an utility library filled with non-common (and some random) utils for data manipulation.Installation#Yarn#yarn add types-doodlerCopynpm#npm install types-doodlerCopyUsage#Import types-doodler wherever you want:const td = require('types-doodler'); // or import td from 'types-doodler';CopyStart using the provided utils:const random = types.arrays.random({ array: [1, 2, 3, 4, 5] quantity: 2 }); console.log(random); // output: [1, 5]Copy