Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ts-is-present
Advanced tools
The ts-is-present
package provides common functions to let you filter out the null or undefined
values from arrays in your code AND end up with the types that you expect at the end.
The following code feels like it should type check, but it does not:
It fails because the TypeScript type checrker can't derive what the lambda function that you provided is doing:
This library provides the three isPresent
, isDefined
and isFilled
functions to solve this issue in the way that you would
expect the filter
function to work:
Use this library to dramatically simplify your TypeScript code and get the full power of your types.
An example of the fundamental problem can be found in the TypeScript bug tracker but we will try and explain it again simply here.
The first fact is that, TypeScript can not look at the following
lambda function x => x !== undefined
and work out that it should
get the type (t: T | undefined): t is T
. Instead, the best it can
do is to derive the type: (t: any): boolean
.
The second fact is that TypeScript has two type definitions for the filter
function. They are:
// Definition 1
filter<S extends T>(callbackfn: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];
// Definition 2
filter(callbackfn: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T[];
If we look at those types carefully they differ in an interesting way.
The second definition expects a callback function where the return type of that callback is unknown
; this will be treated as a truthy value when the filtering is performed. Most importantly, in this function, if you give it an Array<T>
then you will get back an Array<S>
; even if the lambda that you provided proves that the type should be restricted.
The first definition, however, expects that the return type of the callback will be value is S
where the generic definition of S extends T
applies. This means that, if you give this version of filter an Array<T>
and a function that can tell if a particular T
is actually of the more restrictive type S
then it will give you back an Array<S>
. This is the critical factor that lets this library work the way it does for TypeScript.
In short, when you write the following code the second filter
definition is used:
results.filter(x => x !== undefined)
However, when you use this library the first filter
definition is used:
results.filter(isDefined)
That is why this library works to give you the right types.
FAQs
A library to have a generic typescript definition for object presence.
The npm package ts-is-present receives a total of 106,361 weekly downloads. As such, ts-is-present popularity was classified as popular.
We found that ts-is-present demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.