11 lines
305 B
Plaintext
11 lines
305 B
Plaintext
"use strict";
|
|
|
|
function _class_private_field_loose_base(receiver, privateKey) {
|
|
if (!Object.prototype.hasOwnProperty.call(receiver, privateKey)) {
|
|
throw new TypeError("attempted to use private field on non-instance");
|
|
}
|
|
|
|
return receiver;
|
|
}
|
|
exports._ = _class_private_field_loose_base;
|