mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 16:28:50 +00:00
6 lines
204 B
JavaScript
6 lines
204 B
JavaScript
|
|
function _writeOnlyError(name) {
|
||
|
|
throw new TypeError("\"" + name + "\" is write-only");
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = _writeOnlyError;
|
||
|
|
module.exports["default"] = module.exports, module.exports.__esModule = true;
|