Git Product home page Git Product logo

Comments (5)

nissy-dev avatar nissy-dev commented on June 7, 2024 1

Thank you for reporting!
Maybe, I fixed this issue by #13.
Please confirm 🙇

from babel-plugin-object-to-json-parse.

uhyo avatar uhyo commented on June 7, 2024 1

This is very good, but I have to mention one sad thing.

I've just noticed that converting number-keyed properties may change the meaning of programs because the result of converting a number to a string using ToString is implementation-dependent as per the spec.

Example:

// before
var obj = {77777777777777777: "foo"};
console.log(obj[77777777777777777]); // => "foo"

this program outputs "foo" in all browsers.
However, the program after conversion behaves differently in IE11:

// after
const obj1 = JSON.parse('{"77777777777777780":"foo"}');
console.log(obj1[77777777777777777]); // => "foo" (Chrome) / undefined (IE11)

This program still outputs "foo" for Chrome, but IE11 shows undefined for the same program.


Therefore, we might want to not convert objects with number-keyed properties.

from babel-plugin-object-to-json-parse.

uhyo avatar uhyo commented on June 7, 2024 1

It might be good to allow conversion of numeric keys if they are safe integers.

from babel-plugin-object-to-json-parse.

nissy-dev avatar nissy-dev commented on June 7, 2024

I fixed this issue by using Number.isSafeInteger. (#15 )
Can I close this issue?

from babel-plugin-object-to-json-parse.

uhyo avatar uhyo commented on June 7, 2024

Seems very nice; thank you!

from babel-plugin-object-to-json-parse.

Related Issues (9)

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.