Skip to content
#

npm-package

npm logo

Npm is a package manager for JavaScript, included with Node.js. As a package manager, npm makes it easy for developers to share and reuse code.

Here are 4,326 public repositories matching this topic...

jonahsnider
jonahsnider commented Nov 1, 2020

Describe the bug

When using an image URL like https://bundlephobia.com/api/stats-image?name=convert&version=1.0.1&wide=true for a version that isn't published the image returns a placeholder, but the placeholder gets cached. After the version is published the placeholder image stays cached.

To Reproduce

Visit an image URL for a version that didn't exist at image generation time.

tobinibot
tobinibot commented Jan 8, 2021

While the README states that Hashids is ES5 compatible (https://github.com/niieani/hashids.js#use-as-global-in-the-browser-wherever-es5-is-supported-5kb), the library does not work in IE 11. IE 11, in my understanding, is almost ES5 compatible, enough so that I would expect Hashids to work in it.

The first error IE 11 throws is that it does not support Array.from. This method was introduce

yjhmelody
yjhmelody commented Mar 12, 2021

I use Array<Uint8Array> as a value. But The uint8Array is treated as string.

function arrayString(val) {
  var result = '{'
  for (var i = 0; i < val.length; i++) {
    if (i > 0) {
      result = result + ','
    }
    if (val[i] === null || typeof val[i] === 'undefined') {
      result = result + 'NULL'
    } else if (Array.isArray(val[i])) {
      result = result + arrayStr

Created by Isaac Z. Schlueter

Released January 12, 2010

Organization
npm
Website
www.npmjs.com
Wikipedia
Wikipedia