├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CODIGO_DE_CONDUCTA.md ├── ECMA-404.pdf ├── LEEME.md ├── LICENSE ├── PhotonJSON.livecodescript ├── README.md └── testing ├── SpeedTest ├── JSONs │ ├── Untitled-1.json │ ├── api geocode.xyz.json │ ├── as.json │ ├── basicArray.json │ ├── big_test.json │ ├── color.json │ ├── daily.json │ ├── numberTest.json │ ├── phpMyAdmin-config-localhost_3A8010.json │ ├── small.json │ ├── test-array-empty.json │ ├── test-obj-empty.json │ ├── the customProperties of DG.json │ └── unicode_test.json └── SpeedTest.livecode └── Test.livecode /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODIGO_DE_CONDUCTA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/CODIGO_DE_CONDUCTA.md -------------------------------------------------------------------------------- /ECMA-404.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/ECMA-404.pdf -------------------------------------------------------------------------------- /LEEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/LEEME.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/LICENSE -------------------------------------------------------------------------------- /PhotonJSON.livecodescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/PhotonJSON.livecodescript -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/README.md -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/Untitled-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/Untitled-1.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/api geocode.xyz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/api geocode.xyz.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/as.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/as.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/basicArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/basicArray.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/big_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/big_test.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/color.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/daily.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/numberTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/numberTest.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/phpMyAdmin-config-localhost_3A8010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/phpMyAdmin-config-localhost_3A8010.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/small.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/test-array-empty.json: -------------------------------------------------------------------------------- 1 | {"test":[]} -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/test-obj-empty.json: -------------------------------------------------------------------------------- 1 | {"test":{}} -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/the customProperties of DG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/the customProperties of DG.json -------------------------------------------------------------------------------- /testing/SpeedTest/JSONs/unicode_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/JSONs/unicode_test.json -------------------------------------------------------------------------------- /testing/SpeedTest/SpeedTest.livecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/SpeedTest/SpeedTest.livecode -------------------------------------------------------------------------------- /testing/Test.livecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DTByte-Ltd/PhotonJSON/HEAD/testing/Test.livecode --------------------------------------------------------------------------------