Skip to content

Commit

Permalink
Order values
Browse files Browse the repository at this point in the history
  • Loading branch information
bartblast committed Oct 17, 2024
1 parent 9c387ee commit b4fd765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/serializer.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class Serializer {
!serialized.startsWith('"') &&
!serialized.startsWith("{") &&
!serialized.startsWith("[") &&
!["null", "true", "false"].includes(serialized) &&
!["false", "null", "true"].includes(serialized) &&
!/^\d/.test(serialized)
) {
// [version, data]
Expand Down

0 comments on commit b4fd765

Please sign in to comment.