(text)
| 58785 | var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js"); |
| 58786 | parcelHelpers.defineInteropFlag(exports); |
| 58787 | function isJSON(text) { |
| 58788 | var firstChar = text[0]; |
| 58789 | var lastChar = text[text.length - 1]; |
| 58790 | return firstChar === "{" && lastChar === "}" || firstChar === "[" && lastChar === "]"; |
| 58791 | } |
| 58792 | exports.default = { |
| 58793 | name: "JSON", |
| 58794 | extensions: [ |
nothing calls this directly
no outgoing calls
no test coverage detected