Coder Social home page Coder Social logo

Comments (5)

chetjan avatar chetjan commented on May 21, 2024

I think I may have confused the environment of the error. The inconsistency remains, but where it is wrong I got flipped. It seems to be wrong when running the development server locally.

Going with the examples above 'AQID' is produced locally, 'MSwyLDM=' is produced on the server. I don't think it is an issue solely with my development environment, but if others are not able to replicate feel free to close this.

Does the polyfill run locally? I am a bit confused as to why this would happen otherwise.

from edge-runtime.

Kikobeats avatar Kikobeats commented on May 21, 2024

@chetjan btoa expects a string as input; can you confirm to me it works fine if you do this instead?

btoa(new Uint8Array([1, 2, 3]).toString())

from edge-runtime.

chetjan avatar chetjan commented on May 21, 2024

@Kikobeats Yes, that works fine, but the main issue I'm trying to bring attention to is that the polyfill doesn't match the function it is polyfilling. This can cause unexpected behavior when deploying.

In terms of a test spec, what I would expect to pass would be:

import { btoa as btoaPolyfill } from '@edge-runtime/ponyfill'

test('btoa', async () => {
    const value = new Uint8Array([1, 2, 3])
    expect(btoaPolyfill(value)).toBe(btoa(value))
})

Which I suspect would not pass currently.

It may not be worth fixing, the core-js polyfill looks rather complicated. Alternatively, maybe just throw an error if the input is not a string (then it is clear to the developer that the function expects a string).

from edge-runtime.

Kikobeats avatar Kikobeats commented on May 21, 2024

@chetjan oh, I can see now your point 👍

How does this look to you? #646

from edge-runtime.

chetjan avatar chetjan commented on May 21, 2024

Looks good! Thanks.

from edge-runtime.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.