• File: utils.js
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/jsonfile/utils.js
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 498 bytes
  • MIME-type: text/plain
  • Charset: utf-8
function stringify (obj, { EOL = '\n', finalEOL = true, replacer = null, spaces } = {}) {
  const EOF = finalEOL ? EOL : ''
  const str = JSON.stringify(obj, replacer, spaces)

  return str.replace(/\n/g, EOL) + EOF
}

function stripBom (content) {
  // we do this because JSON.parse would convert it to a utf8 string if encoding wasn't specified
  if (Buffer.isBuffer(content)) content = content.toString('utf8')
  return content.replace(/^\uFEFF/, '')
}

module.exports = { stringify, stripBom }