readOnlyError.js 201 B

12345
  1. function _readOnlyError(name) {
  2. throw new TypeError("\"" + name + "\" is read-only");
  3. }
  4. module.exports = _readOnlyError, module.exports.__esModule = true, module.exports["default"] = module.exports;