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