ahmadnassri/har

View on GitHub
lib/comment.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict'

var Comment = function (comment) {
  Object.defineProperty(this, 'comment', {
    enumerable: true,
    writable: true,
    value: comment
  })
}

module.exports = Comment