Abu Sayed
Musician | Singer | Lyricist | Composer | Music Producer | Web | Game | XR & Blockchain Developer
Tag Archives: Utils
react arrayMap utils

Whats up Frontend developers, I created a utility operate referred to as reactMap. You may make use of it. Please discover the hooked up code under import React from ‘react’; export operate reactMap(arr, ifFn, elseFn) { if (!arr || !Array.isArray(arr) || arr.size === 0) { if (elseFn) { if (typeof elseFn === ‘operate’) return elseFn();…
Primeiros passos com Vue Take a look at Utils – Study from Tutorial

Primeiros passos com Vue Take a look at Utils Introdução A medida que evoluímos como desenvolvedores eventualmente chegará o momento de lidar com testes automatizados, é algo inevitável e que pode parecer bem intimidador a primeiro momento. Neste tutorial meu objetivo é te mostrar como você pode começar a testar seus componentes desde a configuração…
Testing Vue.js components with Vue Test Utils – React Dev Feed

Testing Vue.js components with Vue Test Utils Written by Nada Rifki ✏️ I know, testing can seem like a waste of time for many developers. You hate it, right? But, should you? Should you test your components if you want to create a reliable application? I will tell you my thoughts: testing your components (and,…