'use strict';
classSyntetic {
get [Symbol.toStringTag]() {
// All syntetic objects are the same, or mocha won't show a diff.// It has to be different from object to enfore toJSON.return'Syntetic';
}
toJSON() {
returnthis.toString();
}
}
exports.Syntetic = Syntetic;