readOnlyError.js 201 B

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