7 lines
166 B
Plaintext
7 lines
166 B
Plaintext
"use strict";
|
|
|
|
exports._ = exports._read_only_error = _read_only_error;
|
|
function _read_only_error(name) {
|
|
throw new TypeError("\"" + name + "\" is read-only");
|
|
}
|