g13013/node-app-next

View on GitHub
lib/helpers/object.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

function readOnlyProp(object, prop, value) {
  Object.defineProperty(object, prop, {
    configurable: true,
    enumerable: true,
    writable: false,
    value: value
  });
}

exports.readOnlyProp = readOnlyProp;