Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/source_map/lib/array-set.js

Port of mozilla / source-map to deno.
Latest
import * as sourceMap from "https://deno.land/x/source_map@0.8.0-beta.1/lib/array-set.js";

Classes

A data structure which is a combination of an array and a set. Adding a new member is O(1), testing for membership is O(1), and finding the index of an element is O(1). Removing elements from the set is not supported. Only strings are supported for membership.