Blame view

node_modules/bfj-node4/src/stringify.js 1.54 KB
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  'use strict'
  
  const promise = require('./promise')
  const streamify = require('./streamify')
  
  module.exports = stringify
  
  /**
   * Public function `stringify`.
   *
   * Returns a promise and asynchronously serialises a data structure to a
   * JSON string. Sanely handles promises, buffers, maps and other iterables.
   *
   * @param data:         The data to transform
   *
   * @option space:       Indentation string, or the number of spaces
   *                      to indent each nested level by.
   *
   * @option promises:    'resolve' or 'ignore', default is 'resolve'.
   *
   * @option buffers:     'toString' or 'ignore', default is 'toString'.
   *
   * @option maps:        'object' or 'ignore', default is 'object'.
   *
   * @option iterables:   'array' or 'ignore', default is 'array'.
   *
   * @option circular:    'error' or 'ignore', default is 'error'.
   *
   * @option yieldRate:    The number of data items to process per timeslice,
   *                       default is 16384.
   *
   * @option bufferLength: The length of the buffer, default is 1024.
   *
   * @option Promise:      The promise constructor to use, defaults to bluebird.
   **/
  function stringify (data, options) {
    const json = []
    const Promise = promise(options)
    const stream = streamify(data, options)
  
    let resolve, reject
  
    stream.on('data', read)
    stream.on('end', end)
    stream.on('dataError', error)
  
    return new Promise((res, rej) => {
      resolve = res
      reject = rej
    })
  
    function read (chunk) {
      json.push(chunk)
    }
  
    function end () {
      resolve(json.join(''))
    }
  
    function error (e) {
      reject(e)
    }
  }