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

index.js 367B

123456789101112131415161718
  1. 'use strict'
  2. module.exports = stringifyPackage
  3. const DEFAULT_INDENT = 2
  4. const CRLF = '\r\n'
  5. const LF = '\n'
  6. function stringifyPackage (data, indent, newline) {
  7. indent = indent || (indent === 0 ? 0 : DEFAULT_INDENT)
  8. const json = JSON.stringify(data, null, indent)
  9. if (newline === CRLF) {
  10. return json.replace(/\n/g, CRLF) + CRLF
  11. }
  12. return json + LF
  13. }