Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

parse.js 250B

12345678910111213141516
  1. 'use strict'
  2. function Parse (data) {
  3. if (!(this instanceof Parse)) {
  4. return new Parse(data)
  5. }
  6. this.err = null
  7. this.value = null
  8. try {
  9. this.value = JSON.parse(data)
  10. } catch (err) {
  11. this.err = err
  12. }
  13. }
  14. module.exports = Parse