npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

textio-pseudomap

v1.0.3

Published

A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.

Downloads

3

Readme

pseudomap

A thing that is a lot like ES6 Map, but without iterators, for use in environments where for..of syntax and Map are not available.

Build Status Coverage Status

If you need iterators, or just in general a more faithful polyfill to ES6 Maps, check out es6-map.

If you are in an environment where Map is supported, then that will be returned instead, unless process.env.TEST_PSEUDOMAP is set.

You can use any value as keys, and any value as data. Setting again with the identical key will overwrite the previous value.

Internally, data is stored on an Object.create(null) style object. The key is coerced to a string to generate the key on the internal data-bag object. The original key used is stored along with the data.

In the event of a stringified-key collision, a new key is generated by appending an increasing number to the stringified-key until finding either the intended key or an empty spot.

Note that because object traversal order of plain objects is not guaranteed to be identical to insertion order, the insertion order guarantee of Map.prototype.forEach is not guaranteed in this implementation. However, in all versions of Node.js and V8 where this module works, forEach does traverse data in insertion order.

API

Most of the Map API, with the following exceptions:

  1. A Map object is not an iterator.
  2. values, keys, and entries methods are not implemented, because they return iterators.
  3. The argument to the constructor can be an Array of [key, value] pairs, or a Map or PseudoMap object. But, since iterators aren't used, passing any plain-old iterator won't initialize the map properly.

USAGE

Use just like a regular ES6 Map.

var PseudoMap = require('pseudomap')

// optionally provide a pseudomap, or an array of [key,value] pairs
// as the argument to initialize the map with
var myMap = new PseudoMap()

myMap.set(1, 'number 1')
myMap.set('1', 'string 1')
var akey = {}
var bkey = {}
myMap.set(akey, { some: 'data' })
myMap.set(bkey, { some: 'other data' })