first attempt to add new GetParameters method to CrashReporter

This commit is contained in:
Shelley Vohr 2017-10-31 13:06:54 -04:00
parent cd19d7c705
commit a9c13359dc
No known key found for this signature in database
GPG key ID: F13993A75599653C
4 changed files with 16 additions and 6 deletions

View file

@ -108,6 +108,10 @@ class CrashReporter {
setExtraParameter (key, value) {
binding.setExtraParameter(key, value)
}
getParameters (key, value) {
binding.getParameters()
}
}
module.exports = new CrashReporter()