Skip to main content
Module

x/pbkit/misc/array.ts

Protobuf toolkit for modern web development
Go to Latest
File
export function removeItem<T>(arr: T[], item: T): T[] { const index = arr.indexOf(item); arr.splice(index, 1); return arr;}