How to use the call function from istanbul

Find comprehensive JavaScript istanbul.call code examples handpicked from public code repositorys.

8
9
10
11
12
13
14
15
16
var util = require('util')
var Store = require('istanbul').Store

// Constructor
var SourceCacheStore = module.exports = function (opts) {
  Store.call(this, opts)
  opts = opts || {}
  this.sourceCache = opts.sourceCache
}
fork icon255
star icon0
watch icon10