Abu Sayed
Musician | Singer | Lyricist | Composer | Music Producer | Web | Game | XR & Blockchain Developer
Tag Archives: Utility
TFUZ JS – A Tiny JavaScript Utility Library

What’s it? A tiny ~7kb extendable JavaScript utility library with a JQuery like syntax for getting work accomplished quick! In case you are searching for small footprint utility library with a syntax much like JQuery, TFUZ could also be simply what you want. Get TFUZ at https://github.com/bretgeek/tfuz Go to https://tfuz.com for ongoing documentation and examples….
High 15 Utility Instruments For Testers

Just lately, we began digging into Reddit and there we came upon many threads that are very helpful for testers. Whereas I used to be going by way of among the hyperlinks, I discovered this Reddit thread which was speaking about instruments for the testers and I discovered it fairly attention-grabbing. So, we determined to…
Why Utility Kilts are one of the best for Males

There are a variety of explanation why utility kilts are one of the best for males. For one, they’re extremely comfy and permit for a full vary of movement. That is good for individuals who get pleasure from outside actions or who work in guide labor jobs. Another excuse why utility kilts are one of…
Helpful Utility React.js Libraries

React-table. It’s a assortment of hooks for constructing highly effective tables and datagrid experiences which can be quick & light-weight. Here’s a hyperlink to it: https://react-table.tanstack.com Draft-js. It’s a JavaScript wealthy textual content editor framework, constructed for React and backed by an immutable mannequin. Here’s a hyperlink to it: https://draftjs.org Good-scrollbar. This a a minimalistic…
13 Typescript Utility: A Cheat Sheet for Developer

Typescript may be very highly effective by way of kind checking, however someday it will get tedious when some varieties are subsets of different varieties and you might want to outline kind checking for them. Let say you may have 2 response varieties: UserProfileResponse interface UserProfileResponse { id: quantity; identify: string; e-mail: string; telephone: string;…
The Document Utility Sort in TypeScript

I will not lie. There’s a cause I skipped this one for a bit, it was a bit unclear on when to make use of this one, however it’s beginning to make sense. The file utility sort constructs an object sort having keys and another sort. This implies you possibly can slender down your data…
30 Array utility features in JS

javascript-basics (8 Part Series) 1 Mistakes per day in Javascript 2 Simplified Type Coercion in JS … 4 more parts… 3 No more confusion — Splice vs Slice in Javascript 4 isFunctions in Javascript 5 Convert nested JSON to simple JSON in Javascript 6 Most used DateUtils in Javascript 7 Why ‘use strict’; in Javascript?…
TypeScript Utility sorts with Generics

This one shall be a little bit bit extra superior, as we’ll be bettering our combined utility type we made the opposite day. The code to date seems to be like this: interface Consumer { id?: quantity; firstname: string; lastname: string; age?: quantity; } sort LoggedUser = Required<Decide<Consumer, ‘id’>> & Omit<Consumer, ‘id’>; const u1:LoggedUser =…
TypeScript Readonly Utility sort

That is the final of the generally recognized interface modifying utility sorts. Do observe there are a number of extra, however we’ll get to these in a later stage as they’re a bit extra superior. I wish to go over the Readonly utility sort on this article. Utilizing the read-only sort, you possibly can remodel…
Combining TypeScript utility sorts

By now, we had a fundamental introduction to among the utility varieties of TypeScript. Nevertheless, the actual energy unleashes if you mix them. Once we used the partial and required types, you might need observed that they’ve one draw back: they have an effect on all properties. By combining them with pick and omit, we…